diff options
| author | Jiri Olsa <Jiri Olsa jolsa@redhat.com> | 2011-04-20 14:18:28 +0200 |
|---|---|---|
| committer | Jiri Olsa <Jiri Olsa jolsa@redhat.com> | 2011-04-20 14:18:28 +0200 |
| commit | c9d0018b9e527168292f8d40273a9e97223c0bc8 (patch) | |
| tree | 899e1a2a97e98c74cd5d8830d0617c1b2729ba96 /test/lib-test-args.conf | |
| parent | 73eaae45cbc65f3269c54273849d42a3719c357c (diff) | |
| download | latrace-c9d0018b9e527168292f8d40273a9e97223c0bc8.tar.gz latrace-c9d0018b9e527168292f8d40273a9e97223c0bc8.tar.xz latrace-c9d0018b9e527168292f8d40273a9e97223c0bc8.zip | |
adding automated test support
So far for x86 and x86_64 others are disabled.
From this time on, I'll try to force addition of automated
test for each fix/feature.. ;)
Diffstat (limited to 'test/lib-test-args.conf')
| -rw-r--r-- | test/lib-test-args.conf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/lib-test-args.conf b/test/lib-test-args.conf new file mode 100644 index 0000000..5a5ef07 --- /dev/null +++ b/test/lib-test-args.conf @@ -0,0 +1,40 @@ + +char test_char_1(char a); +char test_char_2(char a, char b); +char test_char_3(char a, char b, char c); +char test_char_4(char a, char b, char c, char d); +char test_char_5(char a, char b, char c, char d, char e); +char test_char_6(char a, char b, char c, char d, char e, char f); +char test_char_7(char a, char b, char c, char d, char e, char f, char g); +char test_char_8(char a, char b, char c, char d, char e, char f, char g, char h); +char test_char_9(char a, char b, char c, char d, char e, char f, char g, char h, char i); + +short test_short_1(short a); +short test_short_2(short a, short b); +short test_short_3(short a, short b, short c); +short test_short_4(short a, short b, short c, short d); +short test_short_5(short a, short b, short c, short d, short e); +short test_short_6(short a, short b, short c, short d, short e, short f); +short test_short_7(short a, short b, short c, short d, short e, short f, short g); +short test_short_8(short a, short b, short c, short d, short e, short f, short g, short h); +short test_short_9(short a, short b, short c, short d, short e, short f, short g, short h, short i); + +int test_int_1(int a); +int test_int_2(int a, int b); +int test_int_3(int a, int b, int c); +int test_int_4(int a, int b, int c, int d); +int test_int_5(int a, int b, int c, int d, int e); +int test_int_6(int a, int b, int c, int d, int e, int f); +int test_int_7(int a, int b, int c, int d, int e, int f, int g); +int test_int_8(int a, int b, int c, int d, int e, int f, int g, int h); +int test_int_9(int a, int b, int c, int d, int e, int f, int g, int h, int i); + +long test_long_1(long a); +long test_long_2(long a, long b); +long test_long_3(long a, long b, long c); +long test_long_4(long a, long b, long c, long d); +long test_long_5(long a, long b, long c, long d, long e); +long test_long_6(long a, long b, long c, long d, long e, long f); +long test_long_7(long a, long b, long c, long d, long e, long f, long g); +long test_long_8(long a, long b, long c, long d, long e, long f, long g, long h); +long test_long_9(long a, long b, long c, long d, long e, long f, long g, long h, long i); |
