summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2023-11-17 16:50:54 -0800
committerVitaly Buka <vitalybuka@google.com>2023-11-17 16:52:02 -0800
commitfaaea79ed58b365c19ba4a0581d7f8d6e0ec8351 (patch)
treea766d90eb088f874bdf12713f86304489acffb7c
parente7f350951b304f0426832b0b6482c8bedf239c23 (diff)
[msan][test] Add ptr test case
-rw-r--r--compiler-rt/test/msan/vararg_shadow.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/msan/vararg_shadow.cpp b/compiler-rt/test/msan/vararg_shadow.cpp
index e491a4a53871..8e3bb4f0e048 100644
--- a/compiler-rt/test/msan/vararg_shadow.cpp
+++ b/compiler-rt/test/msan/vararg_shadow.cpp
@@ -220,6 +220,9 @@ int main(int argc, char *argv[]) {
TEST(int);
// RUN: %run %t int 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
+ TEST(void*);
+ // RUN: %run %t "void*" 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
+
TEST(float);
// RUN: %run %t float 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK