aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/integration/BUILD
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2018-07-29 23:56:52 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-29 23:58:24 -0700
commit894aab3f87a6176c5490b90a31bc58d50f3cb221 (patch)
tree6c3cccef6e0e37a3fac65c96b87e12f5b64004d9 /src/test/shell/integration/BUILD
parent696442c2cf3ab935b328000b78cac210300a7004 (diff)
Windows,tests: port loading_phase_tests
//src/test/shell/integration:loading_phase_tests now runs on Windows. The inherently incompatible parts of the test are now in //src/test/shell/integration:loading_phase_posix_tests See https://github.com/bazelbuild/bazel/issues/4292 Change-Id: I90db31449e72aed2138916eed6289bcc20af5cae Closes #5685. Change-Id: I38727aed1b548ec8b566f99551e63cceac78180b PiperOrigin-RevId: 206533515
Diffstat (limited to 'src/test/shell/integration/BUILD')
-rw-r--r--src/test/shell/integration/BUILD21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/test/shell/integration/BUILD b/src/test/shell/integration/BUILD
index 69aa68f75c..9dc0aae2c4 100644
--- a/src/test/shell/integration/BUILD
+++ b/src/test/shell/integration/BUILD
@@ -50,10 +50,25 @@ sh_test(
sh_test(
name = "loading_phase_tests",
size = "large",
- srcs = ["loading_phase_tests.sh"],
- data = [":test-deps"],
+ srcs = ["loading_phase_test.sh"],
+ data = [
+ ":test-deps",
+ "@bazel_tools//tools/bash/runfiles",
+ ],
shard_count = 4,
- tags = ["no_windows"],
+)
+
+sh_test(
+ name = "loading_phase_posix_tests",
+ size = "large",
+ srcs = ["loading_phase_posix_test.sh"],
+ data = [
+ ":test-deps",
+ "@bazel_tools//tools/bash/runfiles",
+ ],
+ tags = [
+ "no_windows", # test uses symlinks and chmod
+ ],
)
sh_test(