summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-06-09 14:15:54 +0000
committerpaltherr <paltherr@epfl.ch>2004-06-09 14:15:54 +0000
commit5c8234107d90c29fc4cdea06478e38283291f52b (patch)
tree73766d982fe48a36112847210673f03b8d992170 /Makefile
parentb96d7fa0a975b172cd2a52cf2cf54cec085320b9 (diff)
downloadscala-5c8234107d90c29fc4cdea06478e38283291f52b.tar.gz
scala-5c8234107d90c29fc4cdea06478e38283291f52b.tar.bz2
scala-5c8234107d90c29fc4cdea06478e38283291f52b.zip
- Changed show-missing to detect missing test f...
- Changed show-missing to detect missing test files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9b12b864a9..ad0b6e427b 100644
--- a/Makefile
+++ b/Makefile
@@ -518,11 +518,11 @@ include $(PROJECT_SUPPORTDIR)/make/sdc.mk
show-missing :
@$(RM) /tmp/check.tmp.log /tmp/check.mkf.log /tmp/check.lst.log
- @for filename in $(LIBRARY_SC_FILES:%='%'); do \
+ @for filename in $(TEST_FILES:%='%'); do \
echo $$filename | $(TR) " " "\n" >> /tmp/check.tmp.log; \
done
@$(SORT) /tmp/check.tmp.log > /tmp/check.mkf.log
- @$(FIND) $(LIBRARY_ROOT) -name '*.scala' | $(SORT) > /tmp/check.lst.log
+ @$(FIND) $(TEST_ROOT) -name '*.scala' | $(SORT) > /tmp/check.lst.log
@$(COMM) -1 -3 /tmp/check.mkf.log /tmp/check.lst.log
@$(RM) /tmp/check.tmp.log /tmp/check.mkf.log /tmp/check.lst.log