Reactivate test disable in #16760 except on windows (#16957)

namely

- //daml-script/export/integration-tests/reproduces-transactions:test
- //compiler/damlc:daml-stdlib-doctest
This commit is contained in:
Remy 2023-06-05 11:46:03 +02:00 committed by GitHub
parent 3ef51a711c
commit ce2203dd2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 19 deletions

View File

@ -335,18 +335,18 @@ genrule(
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
#daml_doc_test( daml_doc_test(
# name = "daml-stdlib-doctest", name = "daml-stdlib-doctest",
# package_name = "daml-stdlib", package_name = "daml-stdlib",
# srcs = ["//compiler/damlc/daml-stdlib-src"], srcs = ["//compiler/damlc/daml-stdlib-src"],
# flags = [ flags = [
# "--no-dflags-check", "--no-dflags-check",
# "--import-source=no", "--import-source=no",
# ], ],
# ignored_srcs = [ ignored_srcs = [
# "LibraryModules.daml", "LibraryModules.daml",
# "DA/Experimental/*.daml", "DA/Experimental/*.daml",
# "DA/Time/Types.daml", "DA/Time/Types.daml",
# "DA/Action/State/Type.daml", "DA/Action/State/Type.daml",
# ], ],
#) ) if not is_windows else None

View File

@ -6,6 +6,7 @@ load(
"da_scala_test", "da_scala_test",
"lf_scalacopts_stricter", "lf_scalacopts_stricter",
) )
load("@os_info//:os_info.bzl", "is_windows")
da_scala_test( da_scala_test(
name = "test", name = "test",
@ -54,4 +55,4 @@ da_scala_test(
"@maven//:io_netty_netty_handler", "@maven//:io_netty_netty_handler",
"@maven//:org_scalatest_scalatest_compatible", "@maven//:org_scalatest_scalatest_compatible",
], ],
) ) if not is_windows else None

View File

@ -289,11 +289,11 @@ final class ReproducesTransactions
"Generated export for IOU transfer compiles" - { "Generated export for IOU transfer compiles" - {
s"offset 0 - empty ACS" ignore { testOffset(2, 0)(testIou) } s"offset 0 - empty ACS" in { testOffset(2, 0)(testIou) }
s"offset 2 - skip split" ignore { testOffset(2, 2)(testIou) } s"offset 2 - skip split" in { testOffset(2, 2)(testIou) }
s"offset 4 - no trees" ignore { testOffset(2, 4)(testIou) } s"offset 4 - no trees" in { testOffset(2, 4)(testIou) }
} }