summaryrefslogtreecommitdiff
path: root/test cases/unit/37 python extmodule/meson.build
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-08-18 23:58:49 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-08-19 12:39:46 +0300
commit972535a6ac9fb1f9611c1b68293f7df88ec1b1f7 (patch)
treeed17817547da3e20c5c3080075c8924c24f6b3f9 /test cases/unit/37 python extmodule/meson.build
parentedf901431272e5bb348e265113179c337f65a881 (diff)
downloadmeson-972535a6ac9fb1f9611c1b68293f7df88ec1b1f7.tar.gz
Condense test dirs.
Diffstat (limited to 'test cases/unit/37 python extmodule/meson.build')
-rw-r--r--test cases/unit/37 python extmodule/meson.build23
1 files changed, 0 insertions, 23 deletions
diff --git a/test cases/unit/37 python extmodule/meson.build b/test cases/unit/37 python extmodule/meson.build
deleted file mode 100644
index 479865482..000000000
--- a/test cases/unit/37 python extmodule/meson.build
+++ /dev/null
@@ -1,23 +0,0 @@
-project('Python extension module', 'c',
- default_options : ['buildtype=release'])
-
-py_mod = import('python')
-
-py = py_mod.find_installation(get_option('python'), required : false)
-
-if py.found()
- py_dep = py.dependency()
-
- if py_dep.found()
- subdir('ext')
-
- test('extmod',
- py,
- args : files('blaster.py'),
- env : ['PYTHONPATH=' + pypathdir])
- else
- error('MESON_SKIP_TEST: Python libraries not found, skipping test.')
- endif
-else
- error('MESON_SKIP_TEST: Python not found, skipping test.')
-endif