diff options
author | Karel Kočí <cynerd@email.cz> | 2015-09-22 12:56:30 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-09-22 12:56:30 +0200 |
commit | 4951437ddfa91726acf9610953a072cc2e56c8e1 (patch) | |
tree | 3f4f8b693ae0f94bc36f02bbfa4f9a196f5bd1fb /scripts | |
parent | ad69a15e5d7d8f332823f445b721c5cb9acdfbd9 (diff) | |
download | linux-conf-perf-4951437ddfa91726acf9610953a072cc2e56c8e1.tar.gz linux-conf-perf-4951437ddfa91726acf9610953a072cc2e56c8e1.tar.bz2 linux-conf-perf-4951437ddfa91726acf9610953a072cc2e56c8e1.zip |
Execute checkmeasure only once
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/initialize.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/initialize.py b/scripts/initialize.py index e476f1d..8461b34 100755 --- a/scripts/initialize.py +++ b/scripts/initialize.py @@ -98,6 +98,10 @@ def gen_fixed(): fmes.write(str(srmap[line[7:indx]]) + "\n") def checkmeasure(): + if os.path.isfile(sf(conf.measurechecked_file)): + print("Checking if all configurations can be measured skiped.") + print(" For new check remove file " + sf(conf.measurechecked_file)) + return print("Checking if all configurations can be measured...") utils.build_symbol_map() measure_list = set() @@ -117,6 +121,8 @@ def checkmeasure(): configurations.__exec_sat__(tfile2, [], conf_num) except exceptions.NoSolution: print("W: " + utils.smap[measure] + " won't be measured!") + with open(sf(conf.measurechecked_file), 'w') as f: + f.write("Remove this file if you wanna execute check if all configurations can be measured once again.\n") ################################################################################# |