[llvm-commits] [dragonegg] r153016 - in /dragonegg/trunk: Makefile test/README test/correctness/ test/validator/ test/validator/dragonegg-lit.cfg

Duncan Sands baldrick at free.fr
Sun Mar 18 10:48:21 PDT 2012


Author: baldrick
Date: Sun Mar 18 12:48:20 2012
New Revision: 153016

URL: http://llvm.org/viewvc/llvm-project?rev=153016&view=rev
Log:
Rename the correctness suite to validator, continuing the terminator theme
begun with "the compilator".

Added:
    dragonegg/trunk/test/validator/
      - copied from r153015, dragonegg/trunk/test/correctness/
Removed:
    dragonegg/trunk/test/correctness/
Modified:
    dragonegg/trunk/Makefile
    dragonegg/trunk/test/README
    dragonegg/trunk/test/validator/dragonegg-lit.cfg

Modified: dragonegg/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/Makefile?rev=153016&r1=153015&r2=153016&view=diff
==============================================================================
--- dragonegg/trunk/Makefile (original)
+++ dragonegg/trunk/Makefile Sun Mar 18 12:48:20 2012
@@ -134,12 +134,12 @@
 	$(QUIET)$(LIT_DIR)/lit.py $(LIT_ARGS) --param site="$(LIT_SITE_CONFIG)" \
 	--config-prefix=dragonegg-lit $(TEST_SRC_DIR)/compilator
 
-check-correctness:: $(PLUGIN) $(LIT_SITE_CONFIG)
-	@echo "Running test suite 'correctness'"
+check-validator:: $(PLUGIN) $(LIT_SITE_CONFIG)
+	@echo "Running test suite 'validator'"
 	$(QUIET)$(LIT_DIR)/lit.py $(LIT_ARGS) --param site="$(LIT_SITE_CONFIG)" \
-	--config-prefix=dragonegg-lit $(TEST_SRC_DIR)/correctness
+	--config-prefix=dragonegg-lit $(TEST_SRC_DIR)/validator
 
-check:: check-correctness check-compilator
+check:: check-validator check-compilator
 
 clean::
 	$(QUIET)rm -f *.o *.d $(PLUGIN) $(TARGET_UTIL) $(LIT_SITE_CONFIG)

Modified: dragonegg/trunk/test/README
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/test/README?rev=153016&r1=153015&r2=153016&view=diff
==============================================================================
--- dragonegg/trunk/test/README (original)
+++ dragonegg/trunk/test/README Sun Mar 18 12:48:20 2012
@@ -29,9 +29,9 @@
 GCC's libjava.
 
 
------------------
--- Correctness --
------------------
+---------------
+-- Validator --
+---------------
 
-The correctness directory contains tests that check the correctness of generated
+The validator directory contains tests that check the correctness of generated
 code.

Modified: dragonegg/trunk/test/validator/dragonegg-lit.cfg
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/test/validator/dragonegg-lit.cfg?rev=153016&r1=153015&r2=153016&view=diff
==============================================================================
--- dragonegg/trunk/test/validator/dragonegg-lit.cfg (original)
+++ dragonegg/trunk/test/validator/dragonegg-lit.cfg Sun Mar 18 12:48:20 2012
@@ -5,8 +5,8 @@
 import subprocess
 import DEUtils
 
-# name: The name of this test suite.
-config.name = 'Correctness'
+# It will validate you.  That's what it does.  That's all it does.
+config.name = 'The Validator'
 
 # Load common definitions.
 lit.load_config(config, lit.params['site'])





More information about the llvm-commits mailing list