summaryrefslogtreecommitdiffhomepage
path: root/test/test_samples
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-21 15:27:44 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-21 21:19:25 +0100
commitabcb4e618287d1998e15bf42460d908cf51f994d (patch)
treedfa45a414bf0c4048db505b36b51bab3d3754155 /test/test_samples
parent34fc5336b50c6ae490546ee8f5c95eedb80b49e8 (diff)
chore: refactor codebase with our testing naming format.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'test/test_samples')
-rw-r--r--test/test_samples/sample.asm1
-rw-r--r--test/test_samples/sample.cc.pp3
2 files changed, 4 insertions, 0 deletions
diff --git a/test/test_samples/sample.asm b/test/test_samples/sample.asm
index 82c0320..6b622f7 100644
--- a/test/test_samples/sample.asm
+++ b/test/test_samples/sample.asm
@@ -1,3 +1,4 @@
+;; \note This should compile.
public_segment .code64 __ImageStart
;; rax is the return value register.
mov rax, 5
diff --git a/test/test_samples/sample.cc.pp b/test/test_samples/sample.cc.pp
new file mode 100644
index 0000000..4cce7f6
--- /dev/null
+++ b/test/test_samples/sample.cc.pp
@@ -0,0 +1,3 @@
+int main() {
+ return 0;
+}