diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/files')
| -rw-r--r-- | meta/lib/oeqa/runtime/files/test.c | 26 | ||||
| -rw-r--r-- | meta/lib/oeqa/runtime/files/testmakefile | 5 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/test.c b/meta/lib/oeqa/runtime/files/test.c new file mode 100644 index 0000000000..2d8389c92e --- /dev/null +++ b/meta/lib/oeqa/runtime/files/test.c | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | #include <stdio.h> | ||
| 2 | #include <math.h> | ||
| 3 | #include <stdlib.h> | ||
| 4 | |||
| 5 | double convert(long long l) | ||
| 6 | { | ||
| 7 | return (double)l; | ||
| 8 | } | ||
| 9 | |||
| 10 | int main(int argc, char * argv[]) { | ||
| 11 | |||
| 12 | long long l = 10; | ||
| 13 | double f; | ||
| 14 | double check = 10.0; | ||
| 15 | |||
| 16 | f = convert(l); | ||
| 17 | printf("convert: %lld => %f\n", l, f); | ||
| 18 | if ( f != check ) exit(1); | ||
| 19 | |||
| 20 | f = 1234.67; | ||
| 21 | check = 1234.0; | ||
| 22 | printf("floorf(%f) = %f\n", f, floorf(f)); | ||
| 23 | if ( floorf(f) != check) exit(1); | ||
| 24 | |||
| 25 | return 0; | ||
| 26 | } | ||
diff --git a/meta/lib/oeqa/runtime/files/testmakefile b/meta/lib/oeqa/runtime/files/testmakefile new file mode 100644 index 0000000000..ca1844e930 --- /dev/null +++ b/meta/lib/oeqa/runtime/files/testmakefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | test: test.o | ||
| 2 | gcc -o test test.o -lm | ||
| 3 | test.o: test.c | ||
| 4 | gcc -c test.c | ||
| 5 | |||
