Tips: Switching from a Global configuration to a Committed configuration
Build preparation script
#!/bin/bash
set -e
autoconf && ./configure -f
bear make#!/bin/bash
set -e
cd ..
autoconf && ./configure -f
bear makeAnalyses configuration file
[
{
"name": "Test shift values 7 and -3",
"files": [ "main.c", "caesar.c" ],
"cpp-extra-args": "-I ."
},
{
"name": "Test from program inputs",
"files": [ "main.c", "caesar.c" ],
"cpp-extra-args": "-I .",
"main": "main_with_input",
"val-program-name": "a.out",
"val-args": "|People of Earth, your attention please|7"
}
][
{
"prefix_path": "..",
"name": "Test shift values 7 and -3",
"files": [ "main.c", "caesar.c" ],
"cpp-extra-args": "-I ."
},
{
"prefix_path": "..",
"name": "Test from program inputs",
"files": [ "main.c", "caesar.c" ],
"cpp-extra-args": "-I .",
"main": "main_with_input",
"val-program-name": "a.out",
"val-args": "|People of Earth, your attention please|7"
}
]Last updated