From bbd7a9cd8a23b02f152a70b95af7a8c4e502cb81 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Mon, 11 Dec 2023 23:56:28 +0100 Subject: [PATCH] Added missing files --- testdata/klayout_main/test12q.py | 4 ++++ testdata/klayout_main/test12s.py | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 testdata/klayout_main/test12q.py create mode 100644 testdata/klayout_main/test12s.py diff --git a/testdata/klayout_main/test12q.py b/testdata/klayout_main/test12q.py new file mode 100644 index 000000000..6f829f98b --- /dev/null +++ b/testdata/klayout_main/test12q.py @@ -0,0 +1,4 @@ + +print("Before quit()") +quit() + diff --git a/testdata/klayout_main/test12s.py b/testdata/klayout_main/test12s.py new file mode 100644 index 000000000..9d007aca5 --- /dev/null +++ b/testdata/klayout_main/test12s.py @@ -0,0 +1,6 @@ + +import sys + +print("Before exit()") +sys.exit(1) +