From 1e185383ca5cace04764239f5d887dd58e013086 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 19 Nov 2017 10:23:10 +0800 Subject: Makefile - New target to use testrunner (with the start of a skip list) --- Makefile | 7 +++++++ disabled_tests_run-pass.txt | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 disabled_tests_run-pass.txt diff --git a/Makefile b/Makefile index 56c3e759..793d975d 100644 --- a/Makefile +++ b/Makefile @@ -231,6 +231,13 @@ rust_tests: rust_tests-run-pass # rust_tests-run-fail # rust_tests-compile-fail +.PHONY: RUST_TESTS RUST_TESTS_run-pass +RUST_TESTS: RUST_TESTS_run-pass +RUST_TESTS_run-pass: + @make -C tools/testrunner + @mkdir -p output/rust_tests/run-pass + ./tools/bin/testrunner -o output/rust_tests/run-pass rustc-1.19.0-src/src/test/run-pass --exceptions disabled_tests_run-pass.txt + DISABLED_TESTS := # - NOT A TEST DISABLED_TESTS += run-pass/backtrace-debuginfo-aux diff --git a/disabled_tests_run-pass.txt b/disabled_tests_run-pass.txt new file mode 100644 index 00000000..abb4e493 --- /dev/null +++ b/disabled_tests_run-pass.txt @@ -0,0 +1,3 @@ +tydesc-name # Difference in printing of paths + +# vim: ft=make -- cgit v1.2.3