Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Unified Diff: mozilla-tests/Makefile

Issue 2865028: Update the mozilla tests to new version (as of 2010-06-29). (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mozilla-tests/Patterns.pm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mozilla-tests/Makefile
===================================================================
--- mozilla-tests/Makefile (revision 43940)
+++ mozilla-tests/Makefile (working copy)
@@ -19,13 +19,36 @@
menu-list.txt:
echo "http://$(TEST_HTTP)/tests/mozilla.org/$(JSDIR)/menu.html" > menu-list.txt
+.PHONY: patterns
+
+public-failures.txt:
+ touch $@
+
confidential-failures.txt:
- touch confidential-failures.txt
+ touch $@
+universe.data:
+ touch $@
+
+confidential-universe.data:
+ touch $@
+
+patterns: confidential-failures.txt confidential-universe.data public-failures.txt universe.data
+ if [[ -e confidential-failures.txt.expanded ]]; then \
+ cp confidential-failures.txt confidential-failures.txt.save; \
+ export TEST_UNIVERSE=$(CURRDIR)/confidential-universe.data && \
+ ./pattern-extracter.pl confidential-failures.txt.expanded > confidential-failures.txt; \
+ fi
+ if [[ -e public-failures.txt.expanded ]]; then \
+ cp public-failures.txt public-failures.txt.save; \
+ ./pattern-extracter.pl public-failures.txt.expanded > public-failures.txt; \
+ fi
+
public-failures.txt.expanded: public-failures.txt universe.data
./pattern-expander.pl public-failures.txt > public-failures.txt.expanded
-confidential-failures.txt.expanded: confidential-failures.txt universe.data
+confidential-failures.txt.expanded: confidential-failures.txt confidential-universe.data
+ export TEST_UNIVERSE=$(CURRDIR)/confidential-universe.data && \
./pattern-expander.pl confidential-failures.txt > confidential-failures.txt.expanded
failures.txt: public-failures.txt.expanded confidential-failures.txt.expanded
« no previous file with comments | « no previous file | mozilla-tests/Patterns.pm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698