diff options
| author | kamil <kamil@NetBSD.org> | 2018-05-04 12:27:58 +0000 |
|---|---|---|
| committer | kamil <kamil@NetBSD.org> | 2018-05-04 12:27:58 +0000 |
| commit | 7554da35a1955ae1fc6f79adc55204ef6a69f533 (patch) | |
| tree | bdd570df212c16a9e7cdc3a17dfe361caf0ff573 /tests/usr.bin/c++ | |
| parent | 0ec873f145ce0b0aa74ad878a25057a806ffbc9f (diff) | |
Explain VLA in c++/t_ubsan_vla_out_of_bounds.sh (ATF test)
VLA - Variable Length Array
Requested by <martin>
Diffstat (limited to 'tests/usr.bin/c++')
| -rw-r--r-- | tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh b/tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh index ad2194b63dd..82613a0cb51 100644 --- a/tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh +++ b/tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh @@ -40,28 +40,28 @@ test_target() atf_test_case vla_out_of_bounds vla_out_of_bounds_head() { - atf_set "descr" "Test Undefined Behavior for vla out of bounds" + atf_set "descr" "Test Undefined Behavior for vla (Variable Length Array) out of bounds" atf_set "require.progs" "c++" } atf_test_case vla_out_of_bounds_profile vla_out_of_bounds_profile_head() { - atf_set "descr" "Test Undefined Behavior for vla out of bounds with profiling option" + atf_set "descr" "Test Undefined Behavior for vla (Variable Length Array) out of bounds with profiling option" atf_set "require.progs" "c++" } atf_test_case vla_out_of_bounds_pic vla_out_of_bounds_pic_head() { - atf_set "descr" "Test Undefined Behavior for vla out of bounds with position independent code (PIC) flag" + atf_set "descr" "Test Undefined Behavior for vla (Variable Length Array) out of bounds with position independent code (PIC) flag" atf_set "require.progs" "c++" } atf_test_case vla_out_of_bounds_pie vla_out_of_bounds_pie_head() { - atf_set "descr" "Test Undefined Behavior for vla out of bounds with position independent execution (PIE) flag" + atf_set "descr" "Test Undefined Behavior for vla (Variable Length Array) out of bounds with position independent execution (PIE) flag" atf_set "require.progs" "c++" } atf_test_case vla_out_of_bounds32 vla_out_of_bounds32_head() { - atf_set "descr" "Test Undefined Behavior for vla out of bounds in NetBSD_32 emulation" + atf_set "descr" "Test Undefined Behavior for vla (Variable Length Array) out of bounds in NetBSD_32 emulation" atf_set "require.progs" "c++ file diff cat" } |
