ref: 7aaa8569d3032bb711c4b2c6690ae3243ea03312
parent: 93bd3615bb21d25526198596a09a3ac4815fd1bc
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Mon Feb 17 00:39:53 EST 2025
test bootstrap
--- a/meson.build
+++ b/meson.build
@@ -371,7 +371,8 @@
test('mp2', mptest2, timeout: -1)
endif
-tests_dir = join_paths(meson.current_source_dir(), 'test')
+src_dir = meson.current_source_dir()
+tests_dir = join_paths(src_dir, 'test')
test('100x100.lsp', flisp, args: ['100x100.lsp'], workdir: tests_dir)
test('argv.lsp', flisp, args: ['argv.lsp'], workdir: tests_dir)
@@ -385,3 +386,12 @@
test('torture.lsp', flisp, args: ['torture.lsp'], workdir: tests_dir, timeout: -1)
test('torus.lsp', flisp, args: ['torus.lsp'], workdir: tests_dir)
test('unit.lsp', flisp, args: ['unittest.lsp'], workdir: tests_dir)
+
+bootstrap = find_program(
+ 'bootstrap.sh',
+ dirs: [
+ join_paths(src_dir, 'tools'),
+ ],
+ native: true,
+)
+test('bootstrap', bootstrap, [], workdir: src_dir, is_parallel : false)