mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-devtest
synced 2026-04-24 11:03:36 +02:00
First line lacks a shebang, add it. Signed-off-by: Jan Lindemann <jan@janware.com>
9 lines
204 B
Python
9 lines
204 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import jwutils
|
|
from devtest.os import * # import all commands
|
|
|
|
jwutils.log.set_filename_length(30)
|
|
|
|
exit(jwutils.run_sub_commands('Control Device under Test'))
|