Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions lnt/tests/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,11 +766,7 @@ def run_test(self, opts):
print("%s: creating sandbox: %r" % (
timestamp(), opts.sandbox_path), file=sys.stderr)
os.mkdir(opts.sandbox_path)
if opts.timestamp_build:
fmt_timestamp = timestamp().replace(' ', '_').replace(':', '-')
report_name = "test-%s" % (fmt_timestamp)
else:
report_name = "build"
report_name = f"test-{timestamp().replace(' ', '_').replace(':', '-')}"
g_output_dir = os.path.join(os.path.abspath(opts.sandbox_path),
report_name)

Expand Down Expand Up @@ -997,8 +993,6 @@ def file_log_handler(path):
help="Parent directory to build and run tests in",
type=click.UNPROCESSED, default=None, metavar="PATH")
# Test Options
@click.option("--timestamp/--no-timestamp", "timestamp_build", default=True, show_default=True,
help="Whether to timestamp the build directory (for testing)")
@click.option("--cc", "cc", type=click.UNPROCESSED, required=True,
help="Path to the compiler under test")
@click.option("--cxx", "cxx",
Expand Down
9 changes: 1 addition & 8 deletions lnt/tests/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,12 +350,7 @@ def run_test(self, opts):
# We'll return early from _run_interleaved_builds(), so basedir doesn't matter
basedir = opts.sandbox_path
else:
# Normal mode: use sandbox/build or sandbox/test-<timestamp>
if opts.timestamp_build:
ts = self.start_time.replace(' ', '_').replace(':', '-')
build_dir_name = "test-%s" % ts
else:
build_dir_name = "build"
build_dir_name = f"test-{self.start_time.replace(' ', '_').replace(':', '-')}"
basedir = os.path.join(opts.sandbox_path, build_dir_name)

self._base_path = basedir
Expand Down Expand Up @@ -1314,8 +1309,6 @@ def diagnose(self):
@click.option("-S", "--sandbox", "sandbox_path", required=True,
help="Parent directory to build and run tests in",
type=click.UNPROCESSED, metavar="PATH")
@click.option("--timestamp/--no-timestamp", "timestamp_build", default=True, show_default=True,
help="Whether to timestamp the build directory (for testing)")
@click.option("--configure/--no-configure", "run_configure", default=True, show_default=True,
help="Whether to run CMake if CMakeCache.txt is present (--no-configure is only "
"useful with --no-timestamp)")
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/multisample.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# RUN: --sandbox %t.SANDBOX \
# RUN: --test-suite %S/Inputs/test-suite \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --no-timestamp --multisample 5 > %t.log 2> %t.err
# RUN: --multisample 5 > %t.log 2> %t.err
#
# RUN: filecheck --check-prefix CHECK-STDOUT < %t.log %s
# RUN: filecheck --check-prefix CHECK-STDERR < %t.err %s
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/nt-darwin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# RUN: --sandbox %t.SANDBOX \
# RUN: --test-suite %S/Inputs/test-suite \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --no-timestamp --use-isolation > %t.log 2> %t.err
# RUN: --use-isolation > %t.log 2> %t.err
# RUN: filecheck --check-prefix CHECK-SANDBOX < %t.err %s
#
# CHECK-SANDBOX: creating sandbox profile
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/only_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# RUN: --test-suite %S/Inputs/test-suite \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --only-test subtest \
# RUN: --no-timestamp > %t.log 2> %t.err
# RUN: > %t.log 2> %t.err
#
# RUN: filecheck --check-prefix CHECK-STDOUT < %t.log %s
# RUN: filecheck --check-prefix CHECK-STDERR < %t.err %s
Expand Down
4 changes: 2 additions & 2 deletions tests/runtest/rerun.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# RUN: --sandbox %t.SANDBOX \
# RUN: --test-suite %S/Inputs/rerun-test-suite1 \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --no-timestamp --rerun --run-order 1 > %t.log 2> %t.err
# RUN: --rerun --run-order 1 > %t.log 2> %t.err
# RUN: filecheck --check-prefix CHECK-STDOUT < %t.log %s
# RUN: filecheck --check-prefix CHECK-STDERR < %t.err %s

Expand All @@ -39,7 +39,7 @@
# RUN: --sandbox %t.SANDBOX2 \
# RUN: --test-suite %S/Inputs/rerun-test-suite2 \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --no-timestamp --rerun --run-order 4 --verbose \
# RUN: --rerun --run-order 4 --verbose \
# RUN: > %t.2.log 2> %t.2.err || cat %t.2.err
# RUN: echo "Run 2"
# RUN: filecheck --check-prefix CHECK-STDOUT2 < %t.2.log %s
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-benchmarking-only.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
5 changes: 0 additions & 5 deletions tests/runtest/test_suite-build-dir.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# RUN: mkdir -p %t.CUSTOM_BUILD
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand All @@ -25,7 +24,6 @@
# Test 2: --exec with --build-dir using the custom build location
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --exec \
# RUN: --build-dir %t.CUSTOM_BUILD/mybuild \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand All @@ -43,7 +41,6 @@
# Test 3: Error case - --exec with --build-dir pointing to non-existent directory should fail
# RUN: not lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --exec \
# RUN: --build-dir %t.NONEXISTENT \
# RUN: --use-lit %S/Inputs/test-suite-cmake/fake-lit \
Expand All @@ -56,7 +53,6 @@
# RUN: mkdir -p %t.UNCONFIGURED
# RUN: not lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --exec \
# RUN: --build-dir %t.UNCONFIGURED \
# RUN: --use-lit %S/Inputs/test-suite-cmake/fake-lit \
Expand All @@ -67,7 +63,6 @@
# Test 5: --exec with --build-dir and --only-test (tuple conversion test)
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --exec \
# RUN: --build-dir %t.CUSTOM_BUILD/mybuild \
# RUN: --only-test SingleSource \
Expand Down
5 changes: 2 additions & 3 deletions tests/runtest/test_suite-c-compiler.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cmake-define=CMAKE_C_COMPILER:STRING=%{shared_inputs}/FakeCompilers/clang-r154332 \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
# RUN: --use-make %S/Inputs/test-suite-cmake/fake-make \
# RUN: --use-lit %S/Inputs/test-suite-cmake/fake-lit \
# RUN: > %t.log 2> %t.err || true
# RUN: --use-lit %S/Inputs/test-suite-cmake/fake-lit
# RUN: filecheck --check-prefix CHECK-CC-CONFL-CMAKEDEF < %t.SANDBOX/build/report.json %s
# CHECK-CC-CONFL-CMAKEDEF: "run_order": "154332"
2 changes: 0 additions & 2 deletions tests/runtest/test_suite-cache.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down Expand Up @@ -36,7 +35,6 @@
# Check a run of test-suite using a invalid cmake cache
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-cc.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
# RUN: --use-make %S/Inputs/test-suite-cmake/fake-make \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-cflags0.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-cflags1.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-cflags2.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-cflags3.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-cflags4.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-compile-only.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-cross.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cmake-define=CMAKE_C_COMPILER_TARGET:STRING=targetarch-linux-gnu \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/test_suite-fail-compile.shtest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --no-configure \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/test_suite-fail-exec.shtest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --no-configure \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-machine-name.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --no-configure \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/test_suite-metrics.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-only-test.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-perf-events.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
2 changes: 0 additions & 2 deletions tests/runtest/test_suite-pgo.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand All @@ -20,7 +19,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/test_suite-profile-import.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-profile.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
2 changes: 1 addition & 1 deletion tests/runtest/test_suite-run-order.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --no-configure \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand Down
3 changes: 0 additions & 3 deletions tests/runtest/test_suite-run-under.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: not lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --no-configure \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand All @@ -18,7 +17,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand All @@ -33,7 +31,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
1 change: 0 additions & 1 deletion tests/runtest/test_suite-use-perf.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down
5 changes: 2 additions & 3 deletions tests/runtest/test_suite.shtest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# RUN: rm -rf %t.SANDBOX
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
# RUN: --use-cmake %S/Inputs/test-suite-cmake/fake-cmake \
Expand Down Expand Up @@ -51,7 +51,7 @@
# Use the same sandbox again with --no-configure
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX \
# RUN: --no-timestamp \
# RUN: --build-dir %t.SANDBOX/build \
# RUN: --no-configure \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand All @@ -66,7 +66,6 @@
# RUN: rm -rf %t.SANDBOX2
# RUN: lnt runtest test-suite \
# RUN: --sandbox %t.SANDBOX2 \
# RUN: --no-timestamp \
# RUN: --no-configure \
# RUN: --test-suite %S/Inputs/test-suite-cmake \
# RUN: --cc %{shared_inputs}/FakeCompilers/clang-r154331 \
Expand Down
Loading
Loading