Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/usr.bin/c++ Explain VLA in c++/t_ubsan_vla_out_of_boun...



details:   https://anonhg.NetBSD.org/src/rev/dde5ade63f34
branches:  trunk
changeset: 322477:dde5ade63f34
user:      kamil <kamil%NetBSD.org@localhost>
date:      Fri May 04 12:27:58 2018 +0000

description:
Explain VLA in c++/t_ubsan_vla_out_of_bounds.sh (ATF test)

VLA - Variable Length Array

Requested by <martin>

diffstat:

 tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (37 lines):

diff -r e4c42bf9fcf1 -r dde5ade63f34 tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh
--- a/tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh    Fri May 04 12:26:53 2018 +0000
+++ b/tests/usr.bin/c++/t_ubsan_vla_out_of_bounds.sh    Fri May 04 12:27:58 2018 +0000
@@ -40,28 +40,28 @@
 
 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"
 }
 



Home | Main Index | Thread Index | Old Index