From: Mathieu Desnoyers Date: Thu, 24 Feb 2011 18:30:10 +0000 (-0500) Subject: update CTF tests X-Git-Tag: v0.1~188 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=badf3442ae8567405a0eb9b8dbdde496b0c1bdf3 update CTF tests Signed-off-by: Mathieu Desnoyers --- diff --git a/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-2.txt b/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-2.txt index f881e6d1..5c964a18 100644 --- a/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-2.txt +++ b/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-2.txt @@ -1 +1 @@ -struct test { a.array[3].N = test; }; +struct test { int a.array[3].N; }; diff --git a/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-3.txt b/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-3.txt index 4eb8f983..2d78cd89 100644 --- a/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-3.txt +++ b/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-3.txt @@ -1 +1 @@ -struct test { a->array[3].N = test; }; +struct test { a->array[3].N test; }; diff --git a/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-4.txt b/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-4.txt index ebb93696..1691a2e8 100644 --- a/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-4.txt +++ b/formats/ctf/metadata/ctf-test/fail/struct-with-non-text-left-4.txt @@ -1 +1 @@ -struct test { array[1] = blah; }; +struct test { array[1] blah; };