Skip to content

Commit

Permalink
Reactivate test disable in #16760 except on windows
Browse files Browse the repository at this point in the history
namely

- //daml-script/export/integration-tests/reproduces-transactions:test
- //compiler/damlc:daml-stdlib-doctest
  • Loading branch information
remyhaemmerle-da committed Jun 5, 2023
1 parent 9f55d67 commit 645762d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
30 changes: 15 additions & 15 deletions compiler/damlc/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -335,18 +335,18 @@ genrule(
visibility = ["//visibility:public"],
)

#daml_doc_test(
# name = "daml-stdlib-doctest",
# package_name = "daml-stdlib",
# srcs = ["//compiler/damlc/daml-stdlib-src"],
# flags = [
# "--no-dflags-check",
# "--import-source=no",
# ],
# ignored_srcs = [
# "LibraryModules.daml",
# "DA/Experimental/*.daml",
# "DA/Time/Types.daml",
# "DA/Action/State/Type.daml",
# ],
#)
daml_doc_test(
name = "daml-stdlib-doctest",
package_name = "daml-stdlib",
srcs = ["//compiler/damlc/daml-stdlib-src"],
flags = [
"--no-dflags-check",
"--import-source=no",
],
ignored_srcs = [
"LibraryModules.daml",
"DA/Experimental/*.daml",
"DA/Time/Types.daml",
"DA/Action/State/Type.daml",
],
) if not is_windows else None
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ load(
"da_scala_test",
"lf_scalacopts_stricter",
)
load("@os_info//:os_info.bzl", "is_windows")

da_scala_test(
name = "test",
Expand Down Expand Up @@ -54,4 +55,4 @@ da_scala_test(
"@maven//:io_netty_netty_handler",
"@maven//:org_scalatest_scalatest_compatible",
],
)
) if not is_windows else None
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,11 @@ final class ReproducesTransactions

"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) }

}

Expand Down

0 comments on commit 645762d

Please sign in to comment.