|
@@ -129,11 +129,9 @@ def run_file(files, parameters, expected, mode):
|
|
|
for mod_filename in to_compile:
|
|
|
if mod_filename.endswith(".mvc"):
|
|
|
model_mode = "MO"
|
|
|
+ mod_files.remove(mod_filename)
|
|
|
else:
|
|
|
model_mode = mode
|
|
|
- print("COMPILE " + mod_filename)
|
|
|
- print(" as " + model_mode)
|
|
|
- mod_files.remove(mod_filename)
|
|
|
if parallel_push:
|
|
|
import threading
|
|
|
threads.append(threading.Thread(target=compile_file, args=[address, mod_filename, mod_filename, model_mode, proc]))
|
|
@@ -147,7 +145,6 @@ def run_file(files, parameters, expected, mode):
|
|
|
|
|
|
if mode[-1] == "O":
|
|
|
# Fire up the linker
|
|
|
- print("Linking " + mod_files)
|
|
|
val = execute("link_and_load", [address, username] + mod_files, wait=True)
|
|
|
if val != 0:
|
|
|
raise Exception("Linking error")
|