summaryrefslogtreecommitdiff
path: root/test cases/unit/128 test slice
diff options
context:
space:
mode:
authorJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-11-23 16:15:20 +0200
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-11-23 17:40:18 +0200
commit23b3619b31fd78a318bd95954c1e62e361c0cb4a (patch)
treea76eab6a3b52ba399c6e6a7b8de0ed62f917b305 /test cases/unit/128 test slice
parentb1b22987101a97aa5e7afabd73f6ac5a3ac7aa65 (diff)
downloadmeson-23b3619b31fd78a318bd95954c1e62e361c0cb4a.tar.gz
Condense directory names for rc1.
Diffstat (limited to 'test cases/unit/128 test slice')
-rw-r--r--test cases/unit/128 test slice/meson.build12
-rw-r--r--test cases/unit/128 test slice/test.py0
2 files changed, 12 insertions, 0 deletions
diff --git a/test cases/unit/128 test slice/meson.build b/test cases/unit/128 test slice/meson.build
new file mode 100644
index 000000000..a41c2f62d
--- /dev/null
+++ b/test cases/unit/128 test slice/meson.build
@@ -0,0 +1,12 @@
+project('test_slice')
+
+python = import('python').find_installation('python3')
+
+foreach i : range(10)
+ test('test-' + (i + 1).to_string(),
+ python,
+ args: [
+ meson.current_source_dir() / 'test.py'
+ ],
+ )
+endforeach
diff --git a/test cases/unit/128 test slice/test.py b/test cases/unit/128 test slice/test.py
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/test cases/unit/128 test slice/test.py