summaryrefslogtreecommitdiff
path: root/tests/tpm_lite/tlcl_tests.h
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2018-08-02 16:21:17 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-08-03 01:31:21 -0700
commit9ad8a41b8cedef9ac1f0513992ce6958eb86c257 (patch)
tree2a1fe0e028829dc579840dce386047ce661ac6d3 /tests/tpm_lite/tlcl_tests.h
parentc239374ac3e1af342c10f4f3244bc98d76c2413a (diff)
downloadvboot-9ad8a41b8cedef9ac1f0513992ce6958eb86c257.tar.gz
vboot: bulk fix tabs and spacing inconsistency
Problem files were found with: find . -name '*.c' -o -name '*.h' | xargs grep '^ [^*]' and edited manually. Ignores utility/ and cgpt/, since they seem to globally adhere to a two-space tab convention. BUG=None TEST=make clean runtests TEST=emerge vboot_reference depthcharge Change-Id: I5a678484a119c8f1911f717e1968bdb4f1a0810f Reviewed-on: https://chromium-review.googlesource.com/1160131 Commit-Ready: Joel Kitching <kitching@chromium.org> Tested-by: Joel Kitching <kitching@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'tests/tpm_lite/tlcl_tests.h')
-rw-r--r--tests/tpm_lite/tlcl_tests.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/tpm_lite/tlcl_tests.h b/tests/tpm_lite/tlcl_tests.h
index 5e23ee39..2b6bd6b8 100644
--- a/tests/tpm_lite/tlcl_tests.h
+++ b/tests/tpm_lite/tlcl_tests.h
@@ -16,14 +16,14 @@
/* Prints error and returns on failure */
#define TPM_CHECK(tpm_command) TPM_EXPECT(tpm_command, TPM_SUCCESS)
-#define TPM_EXPECT(tpm_command, expected_result) do { \
- uint32_t _result = (tpm_command); \
- uint32_t _exp = (expected_result); \
- if (_result != _exp) { \
- printf("TEST FAILED: line %d: " #tpm_command ": 0x%x" \
- " (expecting 0x%x)\n", __LINE__, _result, _exp); \
- return _result; \
- } \
+#define TPM_EXPECT(tpm_command, expected_result) do { \
+ uint32_t _result = (tpm_command); \
+ uint32_t _exp = (expected_result); \
+ if (_result != _exp) { \
+ printf("TEST FAILED: line %d: " #tpm_command ": 0x%x" \
+ " (expecting 0x%x)\n", __LINE__, _result, _exp); \
+ return _result; \
+ } \
} while (0)