summaryrefslogtreecommitdiffstats
path: root/llvm/utils/NightlyTest.pl
Commit message (Collapse)AuthorAgeFilesLines
* No longer used, and confuses maintainersJim Laskey2006-09-111-876/+0
| | | | llvm-svn: 30248
* Issue cvs co with -P option to prune empty directories. Remove the unnecessaryEvan Cheng2006-08-291-6/+1
| | | | | | update stage. llvm-svn: 29955
* Added -disable-cbe to disable C backend testing.Evan Cheng2006-06-291-0/+2
| | | | llvm-svn: 28981
* Fix -extraflagsEvan Cheng2006-06-271-1/+1
| | | | llvm-svn: 28937
* Rename EXTRA_FLAGS to EXTRA_OPTIONS.Evan Cheng2006-06-201-1/+1
| | | | llvm-svn: 28872
* Add a new -compileflags options, remove old externals location specifiers.Chris Lattner2006-06-121-25/+12
| | | | | | People should just use -with-externals. llvm-svn: 28756
* Add -extraflags FLAGS to pass extra compilation options.Evan Cheng2006-06-071-1/+6
| | | | llvm-svn: 28707
* Allow an option, -with-externals, to be specified that provides the locationReid Spencer2006-04-141-0/+4
| | | | | | of the external tests. This turns into --with-externals option to configure. llvm-svn: 27700
* Cause the various warnings list to be generated via a <ul> list withReid Spencer2006-03-211-4/+20
| | | | | | | | | | text enclosed in <tt>. This ensures that (a) the text is in a fixed width font (to indicated generated text) and (b) the text wraps without causing the page width to be extended. The main result of this is that the report will wrap to conform to the window size in which it is displayed instead of having a very wide length if a warning message is long. llvm-svn: 26916
* Use the <tt> tag instead of <pre> tag to get code/file/warning lists toReid Spencer2006-03-171-1/+1
| | | | | | wrap but also still be in a fixed-width font. llvm-svn: 26825
* Added options -cflag, -cxxflags, and -ldflags to override the default CEvan Cheng2006-02-081-0/+15
| | | | | | | | compilation, C++ compilation, and linker options. e.g. This is the options I use for testing on my x86 iMac: nice ./NightlyTest.pl -release -cflags "-Os -DNDEBUG -fomit-frame-pointer" -cxxflags "-Os -DNDEBUG -finline-functions -felide-constructors -fomit-frame-pointer" llvm-svn: 26057
* Remove -pedantic. It no longer works.Evan Cheng2006-02-081-5/+0
| | | | llvm-svn: 26055
* solaris won't clobber an existing symlink with ln -sf apparentlyChris Lattner2006-01-311-1/+4
| | | | llvm-svn: 25849
* Send an indicator to llvm-testresults if the build failedChris Lattner2005-12-111-1/+1
| | | | llvm-svn: 24665
* Let people who run the nightly tester specify paths to external tests, insteadChris Lattner2005-11-011-2/+21
| | | | | | | | | | | | | of having to hack the nightly tester script itself. as an example, I use the following for my machine: $HOME/llvm/utils/NightlyTest.pl -parallel -release -enable-llcbeta \ -spec2000path /Volumes/ProjectsDisk/cvs/benchmarks/speccpu2000-llvm/benchspec/ \ -povraypath /Volumes/ProjectsDisk/cvs/benchmarks/povray31 \ -namdpath /Volumes/ProjectsDisk/cvs/benchmarks/namd llvm-svn: 24136
* Revert an accidental commit.Chris Lattner2005-10-291-1/+1
| | | | llvm-svn: 24098
* The nightly tester report doesn't report JIT code size anymore, remove itChris Lattner2005-10-281-5/+3
| | | | | | from the olden graph. llvm-svn: 24057
* * Add ability to specify the target LLVM will compile for via configureMisha Brukman2005-06-061-2/+6
| | | | | | * Minor whitespace cleanups llvm-svn: 22197
* Add a -cvstag option for testing specific branches, such as release candidatesMisha Brukman2005-05-261-4/+10
| | | | llvm-svn: 22176
* spiff up the nightly tester output one more notchChris Lattner2005-03-171-3/+3
| | | | llvm-svn: 20650
* Print out who commits and what files were modified at the bottom of the test ↵Chris Lattner2005-03-161-8/+14
| | | | | | summary log sent to llvm-commits. llvm-svn: 20641
* Fix computation of compiled objects, contributed by Vladimir Merzliakov!Chris Lattner2005-03-111-1/+1
| | | | llvm-svn: 20564
* Replace tabs with spaces, separate function arguments with a spaceMisha Brukman2005-03-101-12/+12
| | | | llvm-svn: 20538
* Improve formatting of the sent mail for the dj test results.Chris Lattner2005-03-101-4/+15
| | | | llvm-svn: 20537
* Include local time on the web page for start/end times.Chris Lattner2005-02-131-2/+3
| | | | llvm-svn: 20150
* Update the documentation about -enable-llcbeta vs. -enable-linscanReid Spencer2005-01-131-1/+1
| | | | llvm-svn: 19530
* Use and print out BuildStatus, we don't always have build errors.Misha Brukman2005-01-121-4/+5
| | | | llvm-svn: 19497
* No need to repeat the word `build' since it's under `Build status'Misha Brukman2005-01-111-1/+1
| | | | llvm-svn: 19481
* rename linscan -> LLCBETA as it should beChris Lattner2005-01-081-1/+1
| | | | llvm-svn: 19401
* Revert the last patch so that the LLVMGCCDIR environment variable isReid Spencer2004-12-261-0/+5
| | | | | | | still viable and will make use of the resurrected --with-llvmgccdir configure option. llvm-svn: 19143
* Remove references to LLVMGCCDIR because it was only used to provide aReid Spencer2004-12-241-5/+0
| | | | | | | value for the --with-llvmgccdir configure option which is no longer supported. llvm-svn: 19135
* Always print out DejagnuTest results to stdout so that it gets emailed to ↵Tanya Lattner2004-12-171-0/+2
| | | | | | the nightly test manager. Eventually Dejagnu should be merged into the added/removed tests. llvm-svn: 19023
* Use user time, not wall time, for optimizer time.Chris Lattner2004-12-141-2/+2
| | | | llvm-svn: 18941
* Revert previous changes to remove -enable-linscan and the *BETA columns ofReid Spencer2004-12-061-2/+2
| | | | | | the nightly test. These are still needed for iterative linear scan testing. llvm-svn: 18577
* Rather than break all the nightly test invocations, permit -enable-linscanReid Spencer2004-12-061-1/+2
| | | | | | option to be specified, but do nothing with it. llvm-svn: 18575
* Remove LLC-BETA and linear scan options as they are no longer reported.Reid Spencer2004-12-061-1/+0
| | | | llvm-svn: 18574
* Print out something useful instead of a blank table when the external testsReid Spencer2004-12-041-0/+1
| | | | | | are skipped by user option. llvm-svn: 18501
* Run dejagnu by default.Tanya Lattner2004-12-041-1/+1
| | | | llvm-svn: 18490
* Removed QMTest functions. The nightly tester no longer runs qmtest. It now ↵Tanya Lattner2004-12-041-74/+5
| | | | | | runs dejagnu by default and you must turn it off using -nodejagnu. llvm-svn: 18489
* Removed QMTests as I will be zapping them soon.John Criswell2004-12-031-51/+0
| | | | | | | | I've done some testing, and this seems to work, but if people who use the nightly tester regularly could spot check these changes, I'd be appreciative. llvm-svn: 18464
* Make sure the timing output is also sent to the log file for dejagnu, notReid Spencer2004-11-231-1/+1
| | | | | | the log file of the NightlyTest.pl script. llvm-svn: 18158
* Moved dejagnu log link to the template.Tanya Lattner2004-11-221-3/+0
| | | | llvm-svn: 18111
* Changed to catch stderror of dejagnu and fixed missing quote.Tanya Lattner2004-11-221-1/+1
| | | | llvm-svn: 18105
* Made dejagnu option lower case.Tanya Lattner2004-11-211-1/+1
| | | | llvm-svn: 18075
* Added the ability to run Dejagnu tests.Tanya Lattner2004-11-211-1/+89
| | | | llvm-svn: 18074
* * Add support for f2c and the -f2c switch to enable Fortran benchmarksMisha Brukman2004-11-081-12/+18
| | | | | | | * Remove spurious spaces between variable names and `=' (they're not lined up anyway and there's no hope of doing that) llvm-svn: 17611
* Adjust to printing user+system times instead of wall times. Run the oldenChris Lattner2004-11-061-6/+7
| | | | | | numbers in 'stable' mode so that the numbers are more stable. llvm-svn: 17525
* Touch output files before reading or writing them, so that they areBrian Gaeke2004-09-281-3/+26
| | | | | | | | | | | always guaranteed to exist. This fixes PR444. Thanks to Alkis for reporting the bug and testing the patch. AddRecord used to return a big list, but that return value was never used. So now it doesn't return anything. Create the WebDir if it does not exist. Fix a typo in a comment. llvm-svn: 16541
* Modify the lines of code counting mechanism to use the new "countloc.sh"Reid Spencer2004-09-061-1/+1
| | | | | | | utility. This avoids some problems with long line lengths and counting the wrong things. llvm-svn: 16200
* Remove double paren use in system() function so that the command line canReid Spencer2004-09-051-2/+2
| | | | | | be correctly interpreted by non-bash shells. llvm-svn: 16194
OpenPOWER on IntegriCloud