summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/seccomp/test_harness.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2015-09-28 08:06:57 +0200
committerIngo Molnar <mingo@kernel.org>2015-09-28 08:06:57 +0200
commit6afc0c269c3d20cde05515b00ede00e91fee0be5 (patch)
treed54e7fa59df16bb62902129dfd28956d9ae1be19 /tools/testing/selftests/seccomp/test_harness.h
parent968d712a2565121b269e1037a1517916a9769423 (diff)
parent097f70b3c4d84ffccca15195bdfde3a37c0a7c0f (diff)
Merge branch 'linus' into perf/core, to pick up fixes before applying new changes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/testing/selftests/seccomp/test_harness.h')
-rw-r--r--tools/testing/selftests/seccomp/test_harness.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/testing/selftests/seccomp/test_harness.h b/tools/testing/selftests/seccomp/test_harness.h
index 977a6afc4489..fb2841601f2f 100644
--- a/tools/testing/selftests/seccomp/test_harness.h
+++ b/tools/testing/selftests/seccomp/test_harness.h
@@ -370,11 +370,8 @@
__typeof__(_expected) __exp = (_expected); \
__typeof__(_seen) __seen = (_seen); \
if (!(__exp _t __seen)) { \
- unsigned long long __exp_print = 0; \
- unsigned long long __seen_print = 0; \
- /* Avoid casting complaints the scariest way we can. */ \
- memcpy(&__exp_print, &__exp, sizeof(__exp)); \
- memcpy(&__seen_print, &__seen, sizeof(__seen)); \
+ unsigned long long __exp_print = (unsigned long long)__exp; \
+ unsigned long long __seen_print = (unsigned long long)__seen; \
__TH_LOG("Expected %s (%llu) %s %s (%llu)", \
#_expected, __exp_print, #_t, \
#_seen, __seen_print); \