Changes between Version 1 and Version 2 of testex
- Timestamp:
- Jun 15, 2011, 2:49:45 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
testex
v1 v2 3 3 4 4 * Environnement variables (appstat01, lx4): 5 {{{ 5 6 export PATH=/scratch/fradav/local/bin:$PATH 6 7 export LD_LIBRARY_PATH=/scratch/fradav/local/lib:$LD_LIBRARY_PATH 8 }}} 7 9 8 10 * Launching the test (standalone), tagged with "tag1" : 11 {{{ 9 12 mono /scratch/fradav/toolbox/testexmono.exe -conf <xmlconfiguration.xml> -mb <multiboost_executable> -examples <examples_directory> -results <results_and_logs_directory> -newtag tag1 13 }}} 10 14 11 15 * Launching the test, comparing the results with "tag1" results 16 {{{ 12 17 mono /scratch/fradav/toolbox/testexmono.exe -conf <xmlconfiguration.xml> -mb <multiboost_executable> -examples <examples_directory> -oldresults <results_and_logs_directory_for_tag1> -oldtag tag1 -results <results_and_logs> -newtag tag2 13 18 }}} 14 19 -results and -oldresults could be the same directory, containing old results and logs for both run 15 20 16 21 * Compiling the script 22 {{{ 17 23 fsc -r:FSharp.PowerPack.dll -r:System.Xml.Linq.dll testexemono.fsx -o testexemono.exe 24 }}} 18 25 19 26 * Running it interactively, replace the "mono testexemono.exe" by this : 27 {{{ 20 28 fsi testexmono.fsx 29 }}} 21 30 22