summaryrefslogtreecommitdiffhomepage
path: root/src/CompilerKit/test
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 05:44:58 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 05:44:58 +0100
commit679e1cf7af3b36faf1160c34e688dc91d1409f46 (patch)
tree0d69fb045af20988c9bd4b39ee4a06601e1525ed /src/CompilerKit/test
parent4c98e23db8c34cfd7f81522dfb48ee7e949cc34e (diff)
[CHORE] Update format.sh and ran it.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/CompilerKit/test')
-rw-r--r--src/CompilerKit/test/Compilers/NectarCodegen.test.cpp6
-rw-r--r--src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cpp4
-rw-r--r--src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cpp4
3 files changed, 10 insertions, 4 deletions
diff --git a/src/CompilerKit/test/Compilers/NectarCodegen.test.cpp b/src/CompilerKit/test/Compilers/NectarCodegen.test.cpp
index 581bfb8..e9632d9 100644
--- a/src/CompilerKit/test/Compilers/NectarCodegen.test.cpp
+++ b/src/CompilerKit/test/Compilers/NectarCodegen.test.cpp
@@ -11,11 +11,13 @@
TEST(CodegenTest, BasicCodegenTestGrep) {
// Compile C++ source to assembly
- auto compile_result = std::system("pef-amd64-necdrv ../../../../snippets/test_snippets/inner.nc > /dev/null 2>&1");
+ auto compile_result =
+ std::system("pef-amd64-necdrv ../../../../snippets/test_snippets/inner.nc > /dev/null 2>&1");
EXPECT_TRUE(compile_result == 0) << "C++ compiler driver failed to compile sample.cc";
}
TEST(CodegenTest, BasicCodegenTestAssemble) {
- auto expr = std::system("pef-amd64-asm ../../../../snippets/test_snippets/inner.masm > /dev/null 2>&1");
+ auto expr =
+ std::system("pef-amd64-asm ../../../../snippets/test_snippets/inner.masm > /dev/null 2>&1");
EXPECT_TRUE(expr == 0) << "ASM Driver did not compile the easy ASM unit.";
}
diff --git a/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cpp b/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cpp
index 8f3ff6b..6cd2167 100644
--- a/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cpp
+++ b/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cpp
@@ -47,6 +47,8 @@ TEST(LinkerRunMachO, LinkerExitsCorrectly) {
return;
}
- auto ret =(entrypoint_cxx(argc, const_cast<const char**>(argv)) == NECTAR_SUCCESS) ? EXIT_SUCCESS : EXIT_FAILURE;
+ auto ret = (entrypoint_cxx(argc, const_cast<const char**>(argv)) == NECTAR_SUCCESS)
+ ? EXIT_SUCCESS
+ : EXIT_FAILURE;
EXPECT_TRUE(ret == EXIT_SUCCESS);
}
diff --git a/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cpp b/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cpp
index b0b00fa..e67916a 100644
--- a/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cpp
+++ b/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cpp
@@ -47,6 +47,8 @@ TEST(LinkerRunMachO, LinkerExitsCorrectly) {
return;
}
- auto ret =(entrypoint_cxx(argc, const_cast<const char**>(argv)) == NECTAR_SUCCESS) ? EXIT_SUCCESS : EXIT_FAILURE;
+ auto ret = (entrypoint_cxx(argc, const_cast<const char**>(argv)) == NECTAR_SUCCESS)
+ ? EXIT_SUCCESS
+ : EXIT_FAILURE;
EXPECT_TRUE(ret == EXIT_SUCCESS);
}