summaryrefslogtreecommitdiff
path: root/test/xray
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2017-05-05 01:55:13 +0000
committerDean Michael Berris <dberris@google.com>2017-05-05 01:55:13 +0000
commitf8e7a418d567bfbabafbff41c9e52a8386dd1160 (patch)
tree90bf296946d91526ec044e24ddee6f2fd8fdb040 /test/xray
parente498e2e10756db887cf408e2561a5fb5ec2f4cbe (diff)
[XRay][compiler-rt] Remove dependency on FileCheck from function id utilities tests
Follow-up on D32846 to simplify testing and not rely on FileCheck to test boundary conditions, and instead do all the testing in code instead. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@302212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/xray')
-rw-r--r--test/xray/TestCases/Linux/func-id-utils.cc32
1 files changed, 14 insertions, 18 deletions
diff --git a/test/xray/TestCases/Linux/func-id-utils.cc b/test/xray/TestCases/Linux/func-id-utils.cc
index 834e7b499..1183d01c7 100644
--- a/test/xray/TestCases/Linux/func-id-utils.cc
+++ b/test/xray/TestCases/Linux/func-id-utils.cc
@@ -2,45 +2,41 @@
// maximum function id for the current binary.
//
// RUN: %clangxx_xray -std=c++11 %s -o %t
-// RUN: XRAY_OPTIONS="patch_premain=false xray_naive_log=false" %run %t | FileCheck %s
+// RUN: XRAY_OPTIONS="patch_premain=false xray_naive_log=false" %run %t
#include "xray/xray_interface.h"
#include <algorithm>
+#include <cassert>
#include <cstdio>
-#include <set>
#include <iterator>
+#include <set>
-[[clang::xray_always_instrument]] void bar(){
- // do nothing!
-}
+[[clang::xray_always_instrument]] void bar(){}
- [[clang::xray_always_instrument]] void foo() {
+[[clang::xray_always_instrument]] void foo() {
bar();
}
[[clang::xray_always_instrument]] int main(int argc, char *argv[]) {
- printf("max function id: %zu\n", __xray_max_function_id());
- // CHECK: max function id: [[MAX:.*]]
-
- std::set<void *> must_be_instrumented;
- must_be_instrumented.insert(reinterpret_cast<void*>(&foo));
- must_be_instrumented.insert(reinterpret_cast<void*>(&bar));
- printf("addresses:\n");
+ assert(__xray_max_function_id() != 0 && "we need xray instrumentation!");
+ std::set<void *> must_be_instrumented = {reinterpret_cast<void *>(&foo),
+ reinterpret_cast<void *>(&bar),
+ reinterpret_cast<void *>(&main)};
std::set<void *> all_instrumented;
for (auto i = __xray_max_function_id(); i != 0; --i) {
auto addr = __xray_function_address(i);
- printf("#%lu -> @%04lx\n", i, addr);
all_instrumented.insert(reinterpret_cast<void *>(addr));
}
+ assert(all_instrumented.size() == __xray_max_function_id() &&
+ "each function id must be assigned to a unique function");
- // CHECK-LABEL: addresses:
- // CHECK: #[[MAX]] -> @[[ADDR:.*]]
- // CHECK-NOT: #0 -> @{{.*}}
std::set<void *> common;
-
std::set_intersection(all_instrumented.begin(), all_instrumented.end(),
must_be_instrumented.begin(),
must_be_instrumented.end(),
std::inserter(common, common.begin()));
+ assert(
+ common == must_be_instrumented &&
+ "we should see all explicitly instrumented functions with function ids");
return common == must_be_instrumented ? 0 : 1;
}