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 | |
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.
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | scripts/test.py | 17 |
2 files changed, 18 insertions, 1 deletions
@@ -42,7 +42,7 @@ deflinux: ARCH=$(SRCARCH) $(MAKE) -C linux defconfig test: $(INITRAM) - @ #TODO + scripts/test.py run: kconfig_parser write_config $(INITRAM) scripts/main_loop.py 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() |