diff options
author | John Criswell <criswell@uiuc.edu> | 2003-10-24 14:25:06 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-10-24 14:25:06 +0000 |
commit | 6b41c0feb26dd64239cc224ff9d084e5d7d32b77 (patch) | |
tree | c847e61c110f3631c238781676b44a5d198937ee | |
parent | e8d8d647b978a7ea92e58bb256b93a9a75511602 (diff) |
Made QMTest run first to ensure that it runs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_1@9464 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 29f823666a..3b98ef8b98 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,13 +1,18 @@ LEVEL = .. DIRS = Programs -include Makefile.tests # # Make QMTest the default for testing features and regressions +# Do this first to force QMTest to run first # all:: qmtest # +# Include other test rules +# +include Makefile.tests + +# # New QMTest functionality: # The test suite is being transitioned over to QMTest. Eventually, it # will use QMTest by default. |