summaryrefslogtreecommitdiffhomepage
path: root/test/Jamfile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 08:00:32 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 08:01:51 +0100
commit11c218683eccb6cd5166aa8dcb8a051b421b0b40 (patch)
tree9bc4c76b54fbdcb54f53540301588ba46aa32c66 /test/Jamfile
parentcd5f71ead79201619a651a6467dd86ab72b93e23 (diff)
feat: Add more tests and Jamfile. Improve allocator_op and basic_hash APIs.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'test/Jamfile')
-rw-r--r--test/Jamfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Jamfile b/test/Jamfile
new file mode 100644
index 0000000..853d246
--- /dev/null
+++ b/test/Jamfile
@@ -0,0 +1,17 @@
+# /*
+# * File: Jamfile
+# * Author: Amlal El Mahrouss,
+# * Copyright 2025, Amlal El Mahrouss, Licensed under the Boost Software License
+# */
+
+project tests
+: default-build debug
+;
+
+exe option.test.o
+ : option.test.cpp
+ : <toolset>gcc : <cxxflags>-std=c++20 ;
+
+exe allocator_op.test.o
+ : allocator_op.test.cpp
+ : <toolset>gcc : <cxxflags>-std=c++20 ; \ No newline at end of file