Files
lifting-bits-mcsema/tests/linux/hello.c
T
artemdinaburg 0c8e47657d Integration Test Updates (#122)
Updating integration tests. Slowly addressing #94 .

* Added a simple string pool example and /bin/ls
* Tests all the way up to recompilation of translated bitcode
* Added travis caching to avoid rebuilds of LLVM. Builds now take ~half the time.
* bootstrap now installs gcc-multilib to do 32-bit integration tests
2017-03-02 19:29:47 -05:00

7 lines
108 B
C

#include <stdio.h>
int main(int argc, const char *argv[]) {
printf("Hello, World!\n");
return 0;
}