forked from OSchip/llvm-project
[TSan][MIPS] XFAIL long jump tests for MIPS64
Mark longjmp tests as XFAIL because longjmp assembly for mips is not yet implemented. Reviewers: dsanders, dvyukov, samsonov Subscribers: llvm-commits, mohit.bhakkad, jaydeep Differential Revision: http://reviews.llvm.org/D9526 llvm-svn: 236847
This commit is contained in:
parent
a95c1a8315
commit
3e493037be
|
@ -1,4 +1,8 @@
|
|||
// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
|
||||
|
||||
// Longjmp assembly has not been implemented for mips64 yet
|
||||
// XFAIL: mips64
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <setjmp.h>
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
|
||||
|
||||
// Longjmp assembly has not been implemented for mips64 yet
|
||||
// XFAIL: mips64
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <setjmp.h>
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
||||
|
||||
// Longjmp assembly has not been implemented for mips64 yet
|
||||
// XFAIL: mips64
|
||||
|
||||
#include <pthread.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
||||
|
||||
// Longjmp assembly has not been implemented for mips64 yet
|
||||
// XFAIL: mips64
|
||||
|
||||
#include <pthread.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
// Test case for longjumping out of signal handler:
|
||||
// https://code.google.com/p/thread-sanitizer/issues/detail?id=75
|
||||
|
||||
// Longjmp assembly has not been implemented for mips64 yet
|
||||
// XFAIL: mips64
|
||||
|
||||
#include <setjmp.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Reference in New Issue