Disable crashing ProfLazyMode test on ARM.

Review URL: http://codereview.chromium.org/115760


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2040 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 91bf9e87
......@@ -129,6 +129,11 @@ static void CompileAndRunScript(const char *src) {
}
// Exclude the following test from ARM because profiling can
// malfunction there.
// TODO(mikhail.naganov): Fix it.
#ifndef V8_TARGET_ARCH_ARM
namespace v8 {
namespace internal {
......@@ -238,6 +243,8 @@ TEST(ProfLazyMode) {
i::FLAG_prof_auto = saved_prof_auto;
}
#endif // V8_TARGET_ARCH_ARM
static inline bool IsStringEqualTo(const char* r, const char* s) {
return strncmp(r, s, strlen(r)) == 0;
......@@ -704,5 +711,4 @@ TEST(EquivalenceOfLoggingAndTraversal) {
i::FLAG_always_compact = saved_always_compact;
}
#endif // ENABLE_LOGGING_AND_PROFILING
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment