]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blob - scripts/test.py
First implementation of test.py
[linux-conf-perf.git] / scripts / test.py
1 #!/bin/env python3
2 import os
3 import sys
4
5 from conf import conf
6 import initialize
7 import kernel
8 import boot
9
10 def test():
11         initialize.gen_requred() # Call this to check initial solution
12         kernel.make()
13
14 #################################################################################
15
16 if __name__ == "__main__":
17         test()