@@ -0,0 +1,10 | |||||
|
1 | import os | |||
|
2 | import shutil | |||
|
3 | import datetime as dt | |||
|
4 | import glob | |||
|
5 | ||||
|
6 | folder=dt.datetime.today().strftime("%Y-%m-%d_%H-%M-%S") | |||
|
7 | os.mkdir(folder) | |||
|
8 | shutil.copy("input.txt",folder+"/input.txt") | |||
|
9 | for file in glob.glob("output_f*.txt"): | |||
|
10 | shutil.copy(file, folder) |
@@ -0,0 +1,10 | |||||
|
1 | import os | |||
|
2 | import shutil | |||
|
3 | import datetime as dt | |||
|
4 | import glob | |||
|
5 | ||||
|
6 | folder=dt.datetime.today().strftime("%Y-%m-%d_%H-%M-%S") | |||
|
7 | os.mkdir(folder) | |||
|
8 | shutil.copy("input.txt",folder+"/input.txt") | |||
|
9 | for file in glob.glob("output_f*.txt"): | |||
|
10 | shutil.copy(file, folder) |
@@ -77,7 +77,7 cp_for_vsim: generate | |||||
77 | cp ./input.txt simulation/ |
|
77 | cp ./input.txt simulation/ | |
78 |
|
78 | |||
79 | archivate: |
|
79 | archivate: | |
80 |
|
|
80 | python ./archivate.py | |
81 |
|
81 | |||
82 | test-common: | generate ghdl ghdl-run archivate |
|
82 | test-common: | generate ghdl ghdl-run archivate | |
83 |
|
83 |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now