summaryrefslogtreecommitdiffhomepage
path: root/test-elf.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-03-29 15:01:38 +0200
committerRoland Reichwein <mail@reichwein.it>2020-03-29 15:01:38 +0200
commit9d3f2b289563cb7c845c8a35cb0e7553b21f85e2 (patch)
tree523f0ca118cb71041bb4ced0bd7659ff073bd12c /test-elf.cpp
parent3e9e87e720a4f643c783843687337c72c082cbaf (diff)
Fix ELF
Diffstat (limited to 'test-elf.cpp')
-rw-r--r--test-elf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-elf.cpp b/test-elf.cpp
index dba220e..d3fa9a9 100644
--- a/test-elf.cpp
+++ b/test-elf.cpp
@@ -49,7 +49,7 @@ TEST_F(ElfTest, write) {
{
0x48, 0xc7, 0xc0, 0x3c, 0x00, 0x00, 0x00, // mov $0x3c,%rax # syscall 60
0x48, 0x31, 0xff, // xor %rdi,%rdi # exit code 0
- 0x0f, 0x05 // syscall
+ 0x0f, 0x05, // syscall
});
ASSERT_TRUE(fs::exists(TempFilename()));