Module Name:    src
Committed By:   kamil
Date:           Fri May  4 12:26:53 UTC 2018

Modified Files:
        src/tests/usr.bin/cc: t_ubsan_vla_out_of_bounds.sh

Log Message:
Explain VLA in t_ubsan_vla_out_of_bounds.sh (ATF test)

VLA - Variable Length Array

Requested by <martin>


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh
diff -u src/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh:1.2 src/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh:1.3
--- src/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh:1.2	Fri May  4 10:44:24 2018
+++ src/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh	Fri May  4 12:26:53 2018
@@ -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" "cc"
 }
 
 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" "cc"
 }
 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" "cc"
 }
 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" "cc"
 }
 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" "cc file diff cat"
 }
 

Reply via email to