summaryrefslogtreecommitdiffhomepage
path: root/test/check
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-24 12:26:53 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-24 12:26:53 +0100
commita93ef6a5cd5e75fa24ffd5ba48573a69faf0207b (patch)
treee748b74a46a44245d5283c20f817aba82c56c0e2 /test/check
parente091fdcea9adc6521271c08574915fe617f3dd2d (diff)
[FEAT] DebuggerKit: Preppring for first release of Debuggers.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'test/check')
-rw-r--r--test/check/missing-syntax-1.nc2
-rw-r--r--test/check/missing-syntax-2.nc2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/check/missing-syntax-1.nc b/test/check/missing-syntax-1.nc
index 4f2e430..cf094e9 100644
--- a/test/check/missing-syntax-1.nc
+++ b/test/check/missing-syntax-1.nc
@@ -4,7 +4,7 @@ const main()
{
let ptr := 0;
let sz := 8;
- cudaMalloc(ptr, sz);
+ cudaMalloc(ptr, sz)
}
diff --git a/test/check/missing-syntax-2.nc b/test/check/missing-syntax-2.nc
index 4f2e430..e01171e 100644
--- a/test/check/missing-syntax-2.nc
+++ b/test/check/missing-syntax-2.nc
@@ -3,7 +3,7 @@ import cudaMalloc;
const main()
{
let ptr := 0;
- let sz := 8;
+ let sz := 8
cudaMalloc(ptr, sz);
}