Exemplo n.º 1
0
    
    
#-------------------------------------------------------------
    
if __name__ == "__main__":
    #import os    
    #os.chdir('..')
    import sys
    from eqrm_code.check_scenarios import check_scenarios_main, \
                      LONG_SCENARIO_DIR, LONG_STANDARD_DIR, LONG_CURRENT_DIR, \
                      LONG_STANDARD_STRING, LONG_CURRENT_STRING
 
    c_failed_missing_file = check_scenarios_main(
        scenario_dir=LONG_SCENARIO_DIR,
        standard_dir=LONG_STANDARD_DIR,
        standard_string=LONG_STANDARD_STRING,
        current_dir=LONG_CURRENT_DIR,
        current_string=LONG_CURRENT_STRING)
    sys.exit(c_failed_missing_file) 
Exemplo n.º 2
0
  Description:

   This script checks if the results in the 'current' dir are
   different from the results in the 'standard' dir.

   The results in 'standard' dir represent the correct results.

  To suppress the running the implementation scenarios, do;
  python check_scenarios.py no_run OR
  python check_scenarios.py n

  The THE_PARAM_T.txt files are skipped.

  Timings are also measured and stored in scenario_performance.asc.

  To reset the standard timings, delete the file
  python_eqrm\implementation_tests\timing\standard*.asc

  Version: $Revision: 997 $
  ModifiedBy: $Author: dgray $
  ModifiedDate: $Date: 2009-07-01 14:14:06 +1000 (Wed, 01 Jul 2009) $


"""

#-------------------------------------------------------------
if __name__ == "__main__":
    from eqrm_code.check_scenarios import check_scenarios_main

    check_scenarios_main()
Exemplo n.º 3
0
#-------------------------------------------------------------

if __name__ == "__main__":
    #import os
    #os.chdir('..')
    import sys
    from eqrm_code.check_scenarios import check_scenarios_main, \
                      LONG_SCENARIO_DIR, LONG_STANDARD_DIR, LONG_CURRENT_DIR, \
                      LONG_STANDARD_STRING, LONG_CURRENT_STRING

    c_failed_missing_file = check_scenarios_main(
        scenario_dir=LONG_SCENARIO_DIR,
        standard_dir=LONG_STANDARD_DIR,
        standard_string=LONG_STANDARD_STRING,
        current_dir=LONG_CURRENT_DIR,
        current_string=LONG_CURRENT_STRING)
    sys.exit(c_failed_missing_file)