[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:
Sagar Thakur 2015-05-08 12:58:03 +00:00
parent a95c1a8315
commit 3e493037be
5 changed files with 19 additions and 0 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>