summaryrefslogtreecommitdiffstats
path: root/runtime/utils_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/utils_test.cc')
-rw-r--r--runtime/utils_test.cc14
1 files changed, 11 insertions, 3 deletions
diff --git a/runtime/utils_test.cc b/runtime/utils_test.cc
index d804f6a8af..2c1aae8223 100644
--- a/runtime/utils_test.cc
+++ b/runtime/utils_test.cc
@@ -25,6 +25,8 @@
#include "scoped_thread_state_change.h"
#include "sirt_ref.h"
+#include <valgrind.h>
+
namespace art {
std::string PrettyArguments(const char* signature);
@@ -358,7 +360,10 @@ TEST_F(UtilsTest, ExecSuccess) {
command.push_back("/usr/bin/id");
}
std::string error_msg;
- EXPECT_TRUE(Exec(command, &error_msg));
+ if (RUNNING_ON_VALGRIND == 0) {
+ // Running on valgrind fails due to some memory that leaks in thread alternate signal stacks.
+ EXPECT_TRUE(Exec(command, &error_msg));
+ }
EXPECT_EQ(0U, error_msg.size()) << error_msg;
}
@@ -366,8 +371,11 @@ TEST_F(UtilsTest, ExecError) {
std::vector<std::string> command;
command.push_back("bogus");
std::string error_msg;
- EXPECT_FALSE(Exec(command, &error_msg));
- EXPECT_NE(0U, error_msg.size());
+ if (RUNNING_ON_VALGRIND == 0) {
+ // Running on valgrind fails due to some memory that leaks in thread alternate signal stacks.
+ EXPECT_FALSE(Exec(command, &error_msg));
+ EXPECT_NE(0U, error_msg.size());
+ }
}
} // namespace art