diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-27 12:17:23 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-27 12:17:23 +0200 |
commit | bbfdeca6f7933ddc98b45975c1f05a2babe06daf (patch) | |
tree | 92d874a1baa0a18902d4c78ee7cf804dc2536876 /scripts | |
parent | 509ec6da2ed54bcd29b7fcf4f308abb916ad1a71 (diff) | |
download | linux-conf-perf-bbfdeca6f7933ddc98b45975c1f05a2babe06daf.tar.gz linux-conf-perf-bbfdeca6f7933ddc98b45975c1f05a2babe06daf.tar.bz2 linux-conf-perf-bbfdeca6f7933ddc98b45975c1f05a2babe06daf.zip |
First implementation of test.py
Not yet finished.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/test.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/test.py b/scripts/test.py new file mode 100644 index 0000000..5c70d13 --- /dev/null +++ b/scripts/test.py @@ -0,0 +1,17 @@ +#!/bin/env python3 +import os +import sys + +from conf import conf +import initialize +import kernel +import boot + +def test(): + initialize.gen_requred() # Call this to check initial solution + kernel.make() + +################################################################################# + +if __name__ == "__main__": + test() |