Home | History | Annotate | Download | only in valgrind

Lines Matching refs:failed

8 # Also save files regrind-failed.txt listing failed tests,
9 # and regrind-failed-map.txt showing which bot URLs have which failed tests
25 valgrind:.*: Assertion.*failed|VALGRIND INTERNAL ERROR"
29 echo "--noscrape: don't scrape bots, just use old regrind-failed.txt"
35 # Given a log on stdin, list all the tests that failed in that log.
44 # Generate a list of failed tests in regrind-failed.txt by scraping bot.
47 rm -f regrind-*.tmp* regrind-failed.txt regrind-failed-map.txt
48 touch regrind-failed.txt
63 layout_list_failed_tests < regrind-$i.tmp > regrind-$i.tmp.failed
64 if test -s regrind-$i.tmp.failed
68 cat regrind-$i.tmp.failed
69 # to the table regrind-failed-map.txt,
70 cat regrind-$i.tmp.failed | sed "s,^,$url ," >> regrind-failed-map.txt
71 # and, if not already there, to regrind-failed.txt.
72 for test in `cat regrind-$i.tmp.failed`
74 fgrep "$test" regrind-failed.txt > /dev/null 2>&1 || echo "$test" >> regrind-failed.txt
77 rm regrind-$i.tmp.failed
86 # Finally, munge the logs to identify tests that probably failed.
88 cat `cat regrind-errfiles.txt` | layout_list_failed_tests > regrind-failed.txt
91 # Run the tests identified in regrind-failed.txt locally under valgrind.
94 echo Running `wc -l < regrind-failed.txt` layout tests.
95 for test in `cat regrind-failed.txt`