Skip to content
Snippets Groups Projects
Commit 29a77013 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

update test oracles

parent 4263a1a0
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@
"typing:int-conversion", "typing:no-proto"
],
"disabled": [
"CERT:EXP:10", "acsl-float-compare", "file:not-found",
"CERT:EXP:10", "acsl-float-compare", "c11", "file:not-found",
"ghost:already-ghost", "parser:decimal-float", "transient-block"
]
}
......
[kernel] Parsing generic.c (with preprocessing)
[kernel:parser:conditional-feature] Warning:
_Generic is a C11 keyword, use -c11 option to enable it
[kernel] generic.c:67:
syntax error:
Location: line 67, between columns 28 and 32, before or at token: char
65 int a = _Generic("abc", char const *: 0);
66 #endif
67 int ok1 = _Generic("abc", char*: 0);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
68 int ok2 = _Generic(1.0, float: 1, double: 0);
69 int ok3 = _Generic(1L, short: 1, unsigned int: 2, int: 3, long: 0, unsigned long: 5);
[kernel:c11] Warning: _Generic is a C11 keyword
[kernel] User Error: warning c11 treated as fatal error.
[kernel] User Error: stopping on file "generic.c" that has errors. Add '-kernel-msg-key pp'
for preprocessing command.
[kernel] Frama-C aborted: invalid user input.
[kernel] Parsing rename.i (no preprocessing)
[kernel] rename.i:69: Warning:
unnamed fields are a C11 extension (use -c11 to avoid this warning)
/* Generated by Frama-C */
struct not_anon {
int __anonCompField1 ;
......
[kernel] Parsing type_redef.i (no preprocessing)
[kernel] type_redef.i:7: User Error:
redefinition of type 'myint' in the same scope is only allowed in C11 (option -c11).
Previous declaration was at type_redef.i:6
[kernel] type_redef.i:10: User Error:
redefinition of type 'list' in the same scope is only allowed in C11 (option -c11).
Previous declaration was at type_redef.i:9
[kernel] type_redef.i:13: User Error:
redefinition of type 'st' in the same scope with incompatible type.
Previous declaration was at type_redef.i:12
[kernel] type_redef.i:18: User Error:
redefinition of type 'u' in the same scope with incompatible type.
Previous declaration was at type_redef.i:17
[kernel] type_redef.i:21: User Error:
redefinition of 'A' in the same scope.
Previous declaration was at type_redef.i:20
[kernel] type_redef.i:21: User Error:
redefinition of type 'e' in the same scope with conflicting type.
Previous declaration was at type_redef.i:20
[kernel] type_redef.i:24: User Error:
redefinition of 'B' in the same scope.
Previous declaration was at type_redef.i:23
[kernel] type_redef.i:26: User Error:
redefinition of type 'st1' in the same scope with incompatible type.
Previous declaration was at type_redef.i:15
[kernel:parser:unsupported] type_redef.i:30: Warning:
block-level typedefs currently unsupported;
trying to convert it to a global-level typedef.
Note that this may lead to incoherent error messages.
[kernel] type_redef.i:30: Failure:
redefinition of a typedef in a non-global scope is currently unsupported
[kernel:parser:unsupported] type_redef.i:31: Warning:
block-level typedefs currently unsupported;
trying to convert it to a global-level typedef.
Note that this may lead to incoherent error messages.
[kernel] type_redef.i:31: Failure:
redefinition of a typedef in a non-global scope is currently unsupported
[kernel] type_redef.i:35: User Error:
redefinition of type 'vi' in the same scope with incompatible type.
Previous declaration was at type_redef.i:34
[kernel] type_redef.i:38: User Error:
redefinition of type 'ci' in the same scope with incompatible type.
Previous declaration was at type_redef.i:37
[kernel] type_redef.i:41: User Error:
redefinition of type 'ai' in the same scope is only allowed in C11 (option -c11).
Previous declaration was at type_redef.i:40
[kernel] type_redef.i:44: User Error:
redefinition of type 'ftest_t' in the same scope with incompatible type.
Previous declaration was at type_redef.i:43
[kernel] type_redef.i:48: User Error:
redefinition of type 'stt' in the same scope is only allowed in C11 (option -c11).
Previous declaration was at type_redef.i:47
[kernel] type_redef.i:49: User Error:
redefinition of type 'stt' in the same scope with incompatible type.
Previous declaration was at type_redef.i:47
[kernel:parser:unsupported] type_redef.i:53: Warning:
block-level typedefs currently unsupported;
trying to convert it to a global-level typedef.
Note that this may lead to incoherent error messages.
[kernel] type_redef.i:53: Failure:
redefinition of a typedef in a non-global scope is currently unsupported
[kernel:parser:unsupported] type_redef.i:57: Warning:
block-level typedefs currently unsupported;
trying to convert it to a global-level typedef.
Note that this may lead to incoherent error messages.
[kernel] type_redef.i:57: Failure:
redefinition of a typedef in a non-global scope is currently unsupported
[kernel:parser:unsupported] type_redef.i:62: Warning:
block-level typedefs currently unsupported;
trying to convert it to a global-level typedef.
Note that this may lead to incoherent error messages.
[kernel] type_redef.i:62: Failure:
redefinition of a typedef in a non-global scope is currently unsupported
[kernel:parser:unsupported] type_redef.i:63: Warning:
block-level typedefs currently unsupported;
trying to convert it to a global-level typedef.
Note that this may lead to incoherent error messages.
[kernel] type_redef.i:63: Failure:
redefinition of a typedef in a non-global scope is currently unsupported
[kernel] User Error: stopping on file "type_redef.i" that has errors.
[kernel] Frama-C aborted: invalid user input.
[kernel] Parsing anonymous_field.i (no preprocessing)
[kernel] anonymous_field.i:1: Warning:
unnamed fields are a C11 extension (use -c11 to avoid this warning)
[eva] Analyzing a complete application starting at main
[eva] Computing initial state
[eva] Initial state computed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment