fix formatting
diff --git a/target/ast10x0/harness/qemu_runner.py b/target/ast10x0/harness/qemu_runner.py index e2a53ed..a00b525 100644 --- a/target/ast10x0/harness/qemu_runner.py +++ b/target/ast10x0/harness/qemu_runner.py
@@ -143,7 +143,9 @@ result = [None] # 0 = pass, 1 = fail, None = no sentinel found with tempfile.NamedTemporaryFile() as f: - with subprocess.Popen(args=qemu_args, stdout=f, stdin=subprocess.DEVNULL) as proc: + with subprocess.Popen( + args=qemu_args, stdout=f, stdin=subprocess.DEVNULL + ) as proc: qemu_finished = threading.Event() sentinel_thread = threading.Thread( target=_sentinel_watcher,
diff --git a/target/ast10x0/tests/stress/ipc/user/BUILD.bazel b/target/ast10x0/tests/stress/ipc/user/BUILD.bazel index 8d8b284..fc96ffb 100644 --- a/target/ast10x0/tests/stress/ipc/user/BUILD.bazel +++ b/target/ast10x0/tests/stress/ipc/user/BUILD.bazel
@@ -30,13 +30,13 @@ stress_image_test( name = "ipc_stress_test", + timeout = "eternal", image = ":ipc", tags = [ - "kernel", "do_not_run_test", + "kernel", ], target_compatible_with = TARGET_COMPATIBLE_WITH, - timeout = "eternal", ) filegroup(
diff --git a/target/ast10x0/tests/stress/mutex/kernel/BUILD.bazel b/target/ast10x0/tests/stress/mutex/kernel/BUILD.bazel index a0bddda..564a4c6 100644 --- a/target/ast10x0/tests/stress/mutex/kernel/BUILD.bazel +++ b/target/ast10x0/tests/stress/mutex/kernel/BUILD.bazel
@@ -26,13 +26,13 @@ stress_image_test( name = "mutex_stress_test", + timeout = "eternal", image = ":mutex", tags = [ - "kernel", "do_not_run_test", + "kernel", ], target_compatible_with = TARGET_COMPATIBLE_WITH, - timeout = "eternal", ) filegroup(
diff --git a/target/ast10x0/tests/stress/process_termination/user/BUILD.bazel b/target/ast10x0/tests/stress/process_termination/user/BUILD.bazel index d32e72a..431d503 100644 --- a/target/ast10x0/tests/stress/process_termination/user/BUILD.bazel +++ b/target/ast10x0/tests/stress/process_termination/user/BUILD.bazel
@@ -30,13 +30,13 @@ stress_image_test( name = "process_termination_stress_test", + timeout = "eternal", image = ":process_termination", tags = [ - "kernel", "do_not_run_test", + "kernel", ], target_compatible_with = TARGET_COMPATIBLE_WITH, - timeout = "eternal", ) filegroup(