From: Kevin Day Date: Mon, 24 Jan 2022 03:52:46 +0000 (-0600) Subject: Cleanup: Unit test header macros should end in an 'h'. X-Git-Tag: 0.5.8~88 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=c1dc63cb6de9b5e02c52ee35ad76876389c01c5f;p=fll Cleanup: Unit test header macros should end in an 'h'. --- diff --git a/level_0/f_account/tests/c/test-account-by_id.h b/level_0/f_account/tests/c/test-account-by_id.h index 111eb12..7910a76 100644 --- a/level_0/f_account/tests/c/test-account-by_id.h +++ b/level_0/f_account/tests/c/test-account-by_id.h @@ -7,8 +7,8 @@ * * Test the account project. */ -#ifndef _TEST__F_account_by_id_ -#define _TEST__F_account_by_id_ +#ifndef _TEST__F_account_by_id_h +#define _TEST__F_account_by_id_h /** * Test that function fails. @@ -40,4 +40,4 @@ extern void test__f_account_by_id__not_found(void **state); */ extern void test__f_account_by_id__works(void **state); -#endif // _TEST__F_account_by_id_ +#endif // _TEST__F_account_by_id_h diff --git a/level_0/f_account/tests/c/test-account-by_name.h b/level_0/f_account/tests/c/test-account-by_name.h index 0c7812c..22129af 100644 --- a/level_0/f_account/tests/c/test-account-by_name.h +++ b/level_0/f_account/tests/c/test-account-by_name.h @@ -7,8 +7,8 @@ * * Test the account project. */ -#ifndef _TEST__F_account_by_name_ -#define _TEST__F_account_by_name_ +#ifndef _TEST__F_account_by_name_h +#define _TEST__F_account_by_name_h /** * Test that function fails. @@ -40,4 +40,4 @@ extern void test__f_account_by_name__not_found(void **state); */ extern void test__f_account_by_name__works(void **state); -#endif // _TEST__F_account_by_name_ +#endif // _TEST__F_account_by_name_h diff --git a/level_0/f_account/tests/c/test-account-group_id_by_name.h b/level_0/f_account/tests/c/test-account-group_id_by_name.h index 75121c2..7f3ea75 100644 --- a/level_0/f_account/tests/c/test-account-group_id_by_name.h +++ b/level_0/f_account/tests/c/test-account-group_id_by_name.h @@ -7,8 +7,8 @@ * * Test the account project. */ -#ifndef _TEST__F_account_id_group_by_name_ -#define _TEST__F_account_id_group_by_name_ +#ifndef _TEST__F_account_id_group_by_name_h +#define _TEST__F_account_id_group_by_name_h /** * Test that function fails. @@ -40,4 +40,4 @@ extern void test__f_account_group_id_by_name__not_found(void **state); */ extern void test__f_account_group_id_by_name__works(void **state); -#endif // _TEST__F_account_id_group_by_name_ +#endif // _TEST__F_account_id_group_by_name_h diff --git a/level_0/f_account/tests/c/test-account-group_name_by_id.h b/level_0/f_account/tests/c/test-account-group_name_by_id.h index a5f017d..785c39b 100644 --- a/level_0/f_account/tests/c/test-account-group_name_by_id.h +++ b/level_0/f_account/tests/c/test-account-group_name_by_id.h @@ -7,8 +7,8 @@ * * Test the account project. */ -#ifndef _TEST__F_account_name_group_by_id_ -#define _TEST__F_account_name_group_by_id_ +#ifndef _TEST__F_account_name_group_by_id_h +#define _TEST__F_account_name_group_by_id_h /** * Test that function fails. @@ -40,4 +40,4 @@ extern void test__f_account_group_name_by_id__not_found(void **state); */ extern void test__f_account_group_name_by_id__works(void **state); -#endif // _TEST__F_account_name_group_by_id_ +#endif // _TEST__F_account_name_group_by_id_h diff --git a/level_0/f_account/tests/c/test-account-id_by_name.h b/level_0/f_account/tests/c/test-account-id_by_name.h index 97534c0..1aa6199 100644 --- a/level_0/f_account/tests/c/test-account-id_by_name.h +++ b/level_0/f_account/tests/c/test-account-id_by_name.h @@ -7,8 +7,8 @@ * * Test the account project. */ -#ifndef _TEST__F_account_id_user_by_name_ -#define _TEST__F_account_id_user_by_name_ +#ifndef _TEST__F_account_id_user_by_name_h +#define _TEST__F_account_id_user_by_name_h /** * Test that function fails. @@ -40,4 +40,4 @@ extern void test__f_account_id_by_name__not_found(void **state); */ extern void test__f_account_id_by_name__works(void **state); -#endif // _TEST__F_account_id_user_by_name_ +#endif // _TEST__F_account_id_user_by_name_h diff --git a/level_0/f_account/tests/c/test-account-name_by_id.h b/level_0/f_account/tests/c/test-account-name_by_id.h index 994763d..6920bb4 100644 --- a/level_0/f_account/tests/c/test-account-name_by_id.h +++ b/level_0/f_account/tests/c/test-account-name_by_id.h @@ -7,8 +7,8 @@ * * Test the account project. */ -#ifndef _TEST__F_account_name_user_by_id_ -#define _TEST__F_account_name_user_by_id_ +#ifndef _TEST__F_account_name_user_by_id_h +#define _TEST__F_account_name_user_by_id_h /** * Test that function fails. @@ -40,4 +40,4 @@ extern void test__f_account_name_by_id__not_found(void **state); */ extern void test__f_account_name_by_id__works(void **state); -#endif // _TEST__F_account_name_user_by_id_ +#endif // _TEST__F_account_name_user_by_id_h diff --git a/level_0/f_capability/tests/c/test-capability-ambient_get.h b/level_0/f_capability/tests/c/test-capability-ambient_get.h index edaad3c..4e8a39b 100644 --- a/level_0/f_capability/tests/c/test-capability-ambient_get.h +++ b/level_0/f_capability/tests/c/test-capability-ambient_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__ambient_get -#define _TEST__F_capability__ambient_get +#ifndef _TEST__F_capability__ambient_get_h +#define _TEST__F_capability__ambient_get_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_ambient_get__fails(void **state); */ extern void test__f_capability_ambient_get__works(void **state); -#endif // _TEST__F_capability__ambient_get +#endif // _TEST__F_capability__ambient_get_h diff --git a/level_0/f_capability/tests/c/test-capability-ambient_reset.h b/level_0/f_capability/tests/c/test-capability-ambient_reset.h index 7e6c91a..c0c62ca 100644 --- a/level_0/f_capability/tests/c/test-capability-ambient_reset.h +++ b/level_0/f_capability/tests/c/test-capability-ambient_reset.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__ambient_reset -#define _TEST__F_capability__ambient_reset +#ifndef _TEST__F_capability__ambient_reset_h +#define _TEST__F_capability__ambient_reset_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_ambient_reset__fails(void **state); */ extern void test__f_capability_ambient_reset__works(void **state); -#endif // _TEST__F_capability__ambient_reset +#endif // _TEST__F_capability__ambient_reset_h diff --git a/level_0/f_capability/tests/c/test-capability-ambient_set.h b/level_0/f_capability/tests/c/test-capability-ambient_set.h index d57dde1..6b22f31 100644 --- a/level_0/f_capability/tests/c/test-capability-ambient_set.h +++ b/level_0/f_capability/tests/c/test-capability-ambient_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__ambient_set -#define _TEST__F_capability__ambient_set +#ifndef _TEST__F_capability__ambient_set_h +#define _TEST__F_capability__ambient_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_ambient_set__fails(void **state); */ extern void test__f_capability_ambient_set__works(void **state); -#endif // _TEST__F_capability__ambient_set +#endif // _TEST__F_capability__ambient_set_h diff --git a/level_0/f_capability/tests/c/test-capability-clear.h b/level_0/f_capability/tests/c/test-capability-clear.h index 61a4011..392ac7e 100644 --- a/level_0/f_capability/tests/c/test-capability-clear.h +++ b/level_0/f_capability/tests/c/test-capability-clear.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__clear -#define _TEST__F_capability__clear +#ifndef _TEST__F_capability__clear_h +#define _TEST__F_capability__clear_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_clear__fails(void **state); */ extern void test__f_capability_clear__works(void **state); -#endif // _TEST__F_capability__clear +#endif // _TEST__F_capability__clear_h diff --git a/level_0/f_capability/tests/c/test-capability-clear_flag.h b/level_0/f_capability/tests/c/test-capability-clear_flag.h index 4f9fe5f..388e3e3 100644 --- a/level_0/f_capability/tests/c/test-capability-clear_flag.h +++ b/level_0/f_capability/tests/c/test-capability-clear_flag.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__clear_flag -#define _TEST__F_capability__clear_flag +#ifndef _TEST__F_capability__clear_flag_h +#define _TEST__F_capability__clear_flag_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_clear_flag__fails(void **state); */ extern void test__f_capability_clear_flag__works(void **state); -#endif // _TEST__F_capability__clear_flag +#endif // _TEST__F_capability__clear_flag_h diff --git a/level_0/f_capability/tests/c/test-capability-compare.h b/level_0/f_capability/tests/c/test-capability-compare.h index 2c087c4..e854730 100644 --- a/level_0/f_capability/tests/c/test-capability-compare.h +++ b/level_0/f_capability/tests/c/test-capability-compare.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__compare -#define _TEST__F_capability__compare +#ifndef _TEST__F_capability__compare_h +#define _TEST__F_capability__compare_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_compare__fails(void **state); */ extern void test__f_capability_compare__works(void **state); -#endif // _TEST__F_capability__compare +#endif // _TEST__F_capability__compare_h diff --git a/level_0/f_capability/tests/c/test-capability-copy.h b/level_0/f_capability/tests/c/test-capability-copy.h index 0b4f453..6815e00 100644 --- a/level_0/f_capability/tests/c/test-capability-copy.h +++ b/level_0/f_capability/tests/c/test-capability-copy.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__copy -#define _TEST__F_capability__copy +#ifndef _TEST__F_capability__copy_h +#define _TEST__F_capability__copy_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_copy__works(void **state); extern void test__f_capability_copy__parameter_checking(void **state); #endif // _di_level_0_parameter_checking_ -#endif // _TEST__F_capability__copy +#endif // _TEST__F_capability__copy_h diff --git a/level_0/f_capability/tests/c/test-capability-copy_external.h b/level_0/f_capability/tests/c/test-capability-copy_external.h index 358f3ac..3d0c9a8 100644 --- a/level_0/f_capability/tests/c/test-capability-copy_external.h +++ b/level_0/f_capability/tests/c/test-capability-copy_external.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__copy_external -#define _TEST__F_capability__copy_external +#ifndef _TEST__F_capability__copy_external_h +#define _TEST__F_capability__copy_external_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_copy_external__fails(void **state); */ extern void test__f_capability_copy_external__works(void **state); -#endif // _TEST__F_capability__copy_external +#endif // _TEST__F_capability__copy_external_h diff --git a/level_0/f_capability/tests/c/test-capability-copy_internal.h b/level_0/f_capability/tests/c/test-capability-copy_internal.h index 6e2bac1..3e64b41 100644 --- a/level_0/f_capability/tests/c/test-capability-copy_internal.h +++ b/level_0/f_capability/tests/c/test-capability-copy_internal.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__copy_internal -#define _TEST__F_capability__copy_internal +#ifndef _TEST__F_capability__copy_internal_h +#define _TEST__F_capability__copy_internal_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_copy_internal__fails(void **state); */ extern void test__f_capability_copy_internal__works(void **state); -#endif // _TEST__F_capability__copy_internal +#endif // _TEST__F_capability__copy_internal_h diff --git a/level_0/f_capability/tests/c/test-capability-delete.h b/level_0/f_capability/tests/c/test-capability-delete.h index 6d6e6bd..c834362 100644 --- a/level_0/f_capability/tests/c/test-capability-delete.h +++ b/level_0/f_capability/tests/c/test-capability-delete.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__delete -#define _TEST__F_capability__delete +#ifndef _TEST__F_capability__delete_h +#define _TEST__F_capability__delete_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_delete__fails(void **state); */ extern void test__f_capability_delete__works(void **state); -#endif // _TEST__F_capability__delete +#endif // _TEST__F_capability__delete_h diff --git a/level_0/f_capability/tests/c/test-capability-file_descriptor_get.h b/level_0/f_capability/tests/c/test-capability-file_descriptor_get.h index b4e0db3..e7df00f 100644 --- a/level_0/f_capability/tests/c/test-capability-file_descriptor_get.h +++ b/level_0/f_capability/tests/c/test-capability-file_descriptor_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__file_descriptor_get -#define _TEST__F_capability__file_descriptor_get +#ifndef _TEST__F_capability__file_descriptor_get_h +#define _TEST__F_capability__file_descriptor_get_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_file_descriptor_get__fails(void **state); */ extern void test__f_capability_file_descriptor_get__works(void **state); -#endif // _TEST__F_capability__file_descriptor_get +#endif // _TEST__F_capability__file_descriptor_get_h diff --git a/level_0/f_capability/tests/c/test-capability-file_descriptor_set.h b/level_0/f_capability/tests/c/test-capability-file_descriptor_set.h index bbb7628..735ecf3 100644 --- a/level_0/f_capability/tests/c/test-capability-file_descriptor_set.h +++ b/level_0/f_capability/tests/c/test-capability-file_descriptor_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__file_descriptor_set -#define _TEST__F_capability__file_descriptor_set +#ifndef _TEST__F_capability__file_descriptor_set_h +#define _TEST__F_capability__file_descriptor_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_file_descriptor_set__fails(void **state); */ extern void test__f_capability_file_descriptor_set__works(void **state); -#endif // _TEST__F_capability__file_descriptor_set +#endif // _TEST__F_capability__file_descriptor_set_h diff --git a/level_0/f_capability/tests/c/test-capability-file_get.h b/level_0/f_capability/tests/c/test-capability-file_get.h index bc77e5a..c61bfec 100644 --- a/level_0/f_capability/tests/c/test-capability-file_get.h +++ b/level_0/f_capability/tests/c/test-capability-file_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__file_get -#define _TEST__F_capability__file_get +#ifndef _TEST__F_capability__file_get_h +#define _TEST__F_capability__file_get_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_file_get__fails(void **state); */ extern void test__f_capability_file_get__works(void **state); -#endif // _TEST__F_capability__file_get +#endif // _TEST__F_capability__file_get_h diff --git a/level_0/f_capability/tests/c/test-capability-file_set.h b/level_0/f_capability/tests/c/test-capability-file_set.h index cf2ee1d..30ac40e 100644 --- a/level_0/f_capability/tests/c/test-capability-file_set.h +++ b/level_0/f_capability/tests/c/test-capability-file_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__file_set -#define _TEST__F_capability__file_set +#ifndef _TEST__F_capability__file_set_h +#define _TEST__F_capability__file_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_file_set__fails(void **state); */ extern void test__f_capability_file_set__works(void **state); -#endif // _TEST__F_capability__file_set +#endif // _TEST__F_capability__file_set_h diff --git a/level_0/f_capability/tests/c/test-capability-flag_get.h b/level_0/f_capability/tests/c/test-capability-flag_get.h index dfbdea8..f1f8d6e 100644 --- a/level_0/f_capability/tests/c/test-capability-flag_get.h +++ b/level_0/f_capability/tests/c/test-capability-flag_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__flag_get -#define _TEST__F_capability__flag_get +#ifndef _TEST__F_capability__flag_get_h +#define _TEST__F_capability__flag_get_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_flag_get__fails(void **state); */ extern void test__f_capability_flag_get__works(void **state); -#endif // _TEST__F_capability__flag_get +#endif // _TEST__F_capability__flag_get_h diff --git a/level_0/f_capability/tests/c/test-capability-flag_set.h b/level_0/f_capability/tests/c/test-capability-flag_set.h index 6c2638c..ce3ab95 100644 --- a/level_0/f_capability/tests/c/test-capability-flag_set.h +++ b/level_0/f_capability/tests/c/test-capability-flag_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__flag_set -#define _TEST__F_capability__flag_set +#ifndef _TEST__F_capability__flag_set_h +#define _TEST__F_capability__flag_set_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_flag_set__fails(void **state); */ extern void test__f_capability_flag_set__works(void **state); -#endif // _TEST__F_capability__flag_set +#endif // _TEST__F_capability__flag_set_h diff --git a/level_0/f_capability/tests/c/test-capability-from_name.h b/level_0/f_capability/tests/c/test-capability-from_name.h index 7eaea9c..0a6ba81 100644 --- a/level_0/f_capability/tests/c/test-capability-from_name.h +++ b/level_0/f_capability/tests/c/test-capability-from_name.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__from_name -#define _TEST__F_capability__from_name +#ifndef _TEST__F_capability__from_name_h +#define _TEST__F_capability__from_name_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_from_name__fails(void **state); */ extern void test__f_capability_from_name__works(void **state); -#endif // _TEST__F_capability__from_name +#endif // _TEST__F_capability__from_name_h diff --git a/level_0/f_capability/tests/c/test-capability-from_text.h b/level_0/f_capability/tests/c/test-capability-from_text.h index 751948b..0179fc5 100644 --- a/level_0/f_capability/tests/c/test-capability-from_text.h +++ b/level_0/f_capability/tests/c/test-capability-from_text.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__from_text -#define _TEST__F_capability__from_text +#ifndef _TEST__F_capability__from_text_h +#define _TEST__F_capability__from_text_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_from_text__fails(void **state); */ extern void test__f_capability_from_text__works(void **state); -#endif // _TEST__F_capability__from_text +#endif // _TEST__F_capability__from_text_h diff --git a/level_0/f_capability/tests/c/test-capability-groups_set.h b/level_0/f_capability/tests/c/test-capability-groups_set.h index 9374f0f..b0e533f 100644 --- a/level_0/f_capability/tests/c/test-capability-groups_set.h +++ b/level_0/f_capability/tests/c/test-capability-groups_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__groups_set -#define _TEST__F_capability__groups_set +#ifndef _TEST__F_capability__groups_set_h +#define _TEST__F_capability__groups_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_groups_set__fails(void **state); */ extern void test__f_capability_groups_set__works(void **state); -#endif // _TEST__F_capability__groups_set +#endif // _TEST__F_capability__groups_set_h diff --git a/level_0/f_capability/tests/c/test-capability-initialize.h b/level_0/f_capability/tests/c/test-capability-initialize.h index 224763b..bfacec0 100644 --- a/level_0/f_capability/tests/c/test-capability-initialize.h +++ b/level_0/f_capability/tests/c/test-capability-initialize.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__initialize -#define _TEST__F_capability__initialize +#ifndef _TEST__F_capability__initialize_h +#define _TEST__F_capability__initialize_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_initialize__fails(void **state); */ extern void test__f_capability_initialize__works(void **state); -#endif // _TEST__F_capability__initialize +#endif // _TEST__F_capability__initialize_h diff --git a/level_0/f_capability/tests/c/test-capability-mode_get.h b/level_0/f_capability/tests/c/test-capability-mode_get.h index 0350e90..269b999 100644 --- a/level_0/f_capability/tests/c/test-capability-mode_get.h +++ b/level_0/f_capability/tests/c/test-capability-mode_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__mode_get -#define _TEST__F_capability__mode_get +#ifndef _TEST__F_capability__mode_get_h +#define _TEST__F_capability__mode_get_h // cap_get_mode() doesn't return failure. @@ -28,4 +28,4 @@ */ extern void test__f_capability_mode_get__works(void **state); -#endif // _TEST__F_capability__mode_get +#endif // _TEST__F_capability__mode_get_h diff --git a/level_0/f_capability/tests/c/test-capability-mode_get_name.h b/level_0/f_capability/tests/c/test-capability-mode_get_name.h index d9f368f..abc3b70 100644 --- a/level_0/f_capability/tests/c/test-capability-mode_get_name.h +++ b/level_0/f_capability/tests/c/test-capability-mode_get_name.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__mode_get_name -#define _TEST__F_capability__mode_get_name +#ifndef _TEST__F_capability__mode_get_name_h +#define _TEST__F_capability__mode_get_name_h // cap_mode_name() doesn't return failure. @@ -28,4 +28,4 @@ */ extern void test__f_capability_mode_get_name__works(void **state); -#endif // _TEST__F_capability__mode_get_name +#endif // _TEST__F_capability__mode_get_name_h diff --git a/level_0/f_capability/tests/c/test-capability-mode_set.h b/level_0/f_capability/tests/c/test-capability-mode_set.h index 621b6b6..b26cbfa 100644 --- a/level_0/f_capability/tests/c/test-capability-mode_set.h +++ b/level_0/f_capability/tests/c/test-capability-mode_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__mode_set -#define _TEST__F_capability__mode_set +#ifndef _TEST__F_capability__mode_set_h +#define _TEST__F_capability__mode_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_mode_set__fails(void **state); */ extern void test__f_capability_mode_set__works(void **state); -#endif // _TEST__F_capability__mode_set +#endif // _TEST__F_capability__mode_set_h diff --git a/level_0/f_capability/tests/c/test-capability-owner_get.h b/level_0/f_capability/tests/c/test-capability-owner_get.h index 08bcf63..ad5d8f6 100644 --- a/level_0/f_capability/tests/c/test-capability-owner_get.h +++ b/level_0/f_capability/tests/c/test-capability-owner_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__owner_get -#define _TEST__F_capability__owner_get +#ifndef _TEST__F_capability__owner_get_h +#define _TEST__F_capability__owner_get_h // cap_mode_name() doesn't return failure. @@ -28,4 +28,4 @@ */ extern void test__f_capability_owner_get__works(void **state); -#endif // _TEST__F_capability__owner_get +#endif // _TEST__F_capability__owner_get_h diff --git a/level_0/f_capability/tests/c/test-capability-owner_set.h b/level_0/f_capability/tests/c/test-capability-owner_set.h index 60c0c4a..973bb91 100644 --- a/level_0/f_capability/tests/c/test-capability-owner_set.h +++ b/level_0/f_capability/tests/c/test-capability-owner_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__owner_set -#define _TEST__F_capability__owner_set +#ifndef _TEST__F_capability__owner_set_h +#define _TEST__F_capability__owner_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_owner_set__fails(void **state); */ extern void test__f_capability_owner_set__works(void **state); -#endif // _TEST__F_capability__owner_set +#endif // _TEST__F_capability__owner_set_h diff --git a/level_0/f_capability/tests/c/test-capability-process_bound_drop.h b/level_0/f_capability/tests/c/test-capability-process_bound_drop.h index 4981054..b84b135 100644 --- a/level_0/f_capability/tests/c/test-capability-process_bound_drop.h +++ b/level_0/f_capability/tests/c/test-capability-process_bound_drop.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__process_bound_drop -#define _TEST__F_capability__process_bound_drop +#ifndef _TEST__F_capability__process_bound_drop_h +#define _TEST__F_capability__process_bound_drop_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_process_bound_drop__fails(void **state); */ extern void test__f_capability_process_bound_drop__works(void **state); -#endif // _TEST__F_capability__process_bound_drop +#endif // _TEST__F_capability__process_bound_drop_h diff --git a/level_0/f_capability/tests/c/test-capability-process_bound_get.h b/level_0/f_capability/tests/c/test-capability-process_bound_get.h index 58bd2e8..c66aac6 100644 --- a/level_0/f_capability/tests/c/test-capability-process_bound_get.h +++ b/level_0/f_capability/tests/c/test-capability-process_bound_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__process_bound_get -#define _TEST__F_capability__process_bound_get +#ifndef _TEST__F_capability__process_bound_get_h +#define _TEST__F_capability__process_bound_get_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_process_bound_get__fails(void **state); */ extern void test__f_capability_process_bound_get__works(void **state); -#endif // _TEST__F_capability__process_bound_get +#endif // _TEST__F_capability__process_bound_get_h diff --git a/level_0/f_capability/tests/c/test-capability-process_get.h b/level_0/f_capability/tests/c/test-capability-process_get.h index eb01f17..314c2e0 100644 --- a/level_0/f_capability/tests/c/test-capability-process_get.h +++ b/level_0/f_capability/tests/c/test-capability-process_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__process_get -#define _TEST__F_capability__process_get +#ifndef _TEST__F_capability__process_get_h +#define _TEST__F_capability__process_get_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_process_get__fails(void **state); */ extern void test__f_capability_process_get__works(void **state); -#endif // _TEST__F_capability__process_get +#endif // _TEST__F_capability__process_get_h diff --git a/level_0/f_capability/tests/c/test-capability-process_get_by_id.h b/level_0/f_capability/tests/c/test-capability-process_get_by_id.h index 6688dd3..68e0bad 100644 --- a/level_0/f_capability/tests/c/test-capability-process_get_by_id.h +++ b/level_0/f_capability/tests/c/test-capability-process_get_by_id.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__process_get_by_id -#define _TEST__F_capability__process_get_by_id +#ifndef _TEST__F_capability__process_get_by_id_h +#define _TEST__F_capability__process_get_by_id_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_process_get_by_id__fails(void **state); */ extern void test__f_capability_process_get_by_id__works(void **state); -#endif // _TEST__F_capability__process_get_by_id +#endif // _TEST__F_capability__process_get_by_id_h diff --git a/level_0/f_capability/tests/c/test-capability-process_set.h b/level_0/f_capability/tests/c/test-capability-process_set.h index f27f7aa..2b6588d 100644 --- a/level_0/f_capability/tests/c/test-capability-process_set.h +++ b/level_0/f_capability/tests/c/test-capability-process_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__process_set -#define _TEST__F_capability__process_set +#ifndef _TEST__F_capability__process_set_h +#define _TEST__F_capability__process_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_process_set__fails(void **state); */ extern void test__f_capability_process_set__works(void **state); -#endif // _TEST__F_capability__process_set +#endif // _TEST__F_capability__process_set_h diff --git a/level_0/f_capability/tests/c/test-capability-security_bits_get.h b/level_0/f_capability/tests/c/test-capability-security_bits_get.h index 72e1fd1..1d86a89 100644 --- a/level_0/f_capability/tests/c/test-capability-security_bits_get.h +++ b/level_0/f_capability/tests/c/test-capability-security_bits_get.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__security_bits_get -#define _TEST__F_capability__security_bits_get +#ifndef _TEST__F_capability__security_bits_get_h +#define _TEST__F_capability__security_bits_get_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_security_bits_get__fails(void **state); */ extern void test__f_capability_security_bits_get__works(void **state); -#endif // _TEST__F_capability__security_bits_get +#endif // _TEST__F_capability__security_bits_get_h diff --git a/level_0/f_capability/tests/c/test-capability-security_bits_set.h b/level_0/f_capability/tests/c/test-capability-security_bits_set.h index 3e7bb2d..bea2ab7 100644 --- a/level_0/f_capability/tests/c/test-capability-security_bits_set.h +++ b/level_0/f_capability/tests/c/test-capability-security_bits_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__security_bits_set -#define _TEST__F_capability__security_bits_set +#ifndef _TEST__F_capability__security_bits_set_h +#define _TEST__F_capability__security_bits_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_security_bits_set__fails(void **state); */ extern void test__f_capability_security_bits_set__works(void **state); -#endif // _TEST__F_capability__security_bits_set +#endif // _TEST__F_capability__security_bits_set_h diff --git a/level_0/f_capability/tests/c/test-capability-size.h b/level_0/f_capability/tests/c/test-capability-size.h index cf2701e..1896df7 100644 --- a/level_0/f_capability/tests/c/test-capability-size.h +++ b/level_0/f_capability/tests/c/test-capability-size.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__size -#define _TEST__F_capability__size +#ifndef _TEST__F_capability__size_h +#define _TEST__F_capability__size_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_size__fails(void **state); */ extern void test__f_capability_size__works(void **state); -#endif // _TEST__F_capability__size +#endif // _TEST__F_capability__size_h diff --git a/level_0/f_capability/tests/c/test-capability-supported.h b/level_0/f_capability/tests/c/test-capability-supported.h index 2519ea5..919efb9 100644 --- a/level_0/f_capability/tests/c/test-capability-supported.h +++ b/level_0/f_capability/tests/c/test-capability-supported.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__supported -#define _TEST__F_capability__supported +#ifndef _TEST__F_capability__supported_h +#define _TEST__F_capability__supported_h // f_capability_supported() doesn't return failure. @@ -21,4 +21,4 @@ */ extern void test__f_capability_supported__works(void **state); -#endif // _TEST__F_capability__supported +#endif // _TEST__F_capability__supported_h diff --git a/level_0/f_capability/tests/c/test-capability-supported_ambient.h b/level_0/f_capability/tests/c/test-capability-supported_ambient.h index 90db89c..92fbb91 100644 --- a/level_0/f_capability/tests/c/test-capability-supported_ambient.h +++ b/level_0/f_capability/tests/c/test-capability-supported_ambient.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__supported_ambient -#define _TEST__F_capability__supported_ambient +#ifndef _TEST__F_capability__supported_ambient_h +#define _TEST__F_capability__supported_ambient_h // f_capability_supported_ambient() doesn't return failure. @@ -21,4 +21,4 @@ */ extern void test__f_capability_supported_ambient__works(void **state); -#endif // _TEST__F_capability__supported_ambient +#endif // _TEST__F_capability__supported_ambient_h diff --git a/level_0/f_capability/tests/c/test-capability-supported_code.h b/level_0/f_capability/tests/c/test-capability-supported_code.h index 3a263e2..66f3819 100644 --- a/level_0/f_capability/tests/c/test-capability-supported_code.h +++ b/level_0/f_capability/tests/c/test-capability-supported_code.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__supported_code -#define _TEST__F_capability__supported_code +#ifndef _TEST__F_capability__supported_code_h +#define _TEST__F_capability__supported_code_h // f_capability_supported_code() doesn't return failure. @@ -21,4 +21,4 @@ */ extern void test__f_capability_supported_code__works(void **state); -#endif // _TEST__F_capability__supported_code +#endif // _TEST__F_capability__supported_code_h diff --git a/level_0/f_capability/tests/c/test-capability-to_name.h b/level_0/f_capability/tests/c/test-capability-to_name.h index 034fdc3..639ba3b 100644 --- a/level_0/f_capability/tests/c/test-capability-to_name.h +++ b/level_0/f_capability/tests/c/test-capability-to_name.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__to_name -#define _TEST__F_capability__to_name +#ifndef _TEST__F_capability__to_name_h +#define _TEST__F_capability__to_name_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_to_name__fails(void **state); */ extern void test__f_capability_to_name__works(void **state); -#endif // _TEST__F_capability__to_name +#endif // _TEST__F_capability__to_name_h diff --git a/level_0/f_capability/tests/c/test-capability-to_text.h b/level_0/f_capability/tests/c/test-capability-to_text.h index 5330e9c..2adc8ef 100644 --- a/level_0/f_capability/tests/c/test-capability-to_text.h +++ b/level_0/f_capability/tests/c/test-capability-to_text.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__to_text -#define _TEST__F_capability__to_text +#ifndef _TEST__F_capability__to_text_h +#define _TEST__F_capability__to_text_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_capability_to_text__fails(void **state); */ extern void test__f_capability_to_text__works(void **state); -#endif // _TEST__F_capability__to_text +#endif // _TEST__F_capability__to_text_h diff --git a/level_0/f_capability/tests/c/test-capability-user_set.h b/level_0/f_capability/tests/c/test-capability-user_set.h index c48355f..ab1ac42 100644 --- a/level_0/f_capability/tests/c/test-capability-user_set.h +++ b/level_0/f_capability/tests/c/test-capability-user_set.h @@ -7,8 +7,8 @@ * * Test the capability project. */ -#ifndef _TEST__F_capability__user_set -#define _TEST__F_capability__user_set +#ifndef _TEST__F_capability__user_set_h +#define _TEST__F_capability__user_set_h /** * Test that function fails. @@ -26,4 +26,4 @@ extern void test__f_capability_user_set__fails(void **state); */ extern void test__f_capability_user_set__works(void **state); -#endif // _TEST__F_capability__user_set +#endif // _TEST__F_capability__user_set_h diff --git a/level_0/f_color/tests/c/test-color-load_context.h b/level_0/f_color/tests/c/test-color-load_context.h index fb4d4f5..3ecf4a6 100644 --- a/level_0/f_color/tests/c/test-color-load_context.h +++ b/level_0/f_color/tests/c/test-color-load_context.h @@ -7,8 +7,8 @@ * * Test the color project. */ -#ifndef _TEST__F_color__load_context -#define _TEST__F_color__load_context +#ifndef _TEST__F_color__load_context_h +#define _TEST__F_color__load_context_h // f_color_load_context() only returns failures by other functions that have their own tests. diff --git a/level_0/f_color/tests/c/test-color-save_1.h b/level_0/f_color/tests/c/test-color-save_1.h index a681d7c..d80b485 100644 --- a/level_0/f_color/tests/c/test-color-save_1.h +++ b/level_0/f_color/tests/c/test-color-save_1.h @@ -7,8 +7,8 @@ * * Test the color project. */ -#ifndef _TEST__F_color__save_1 -#define _TEST__F_color__save_1 +#ifndef _TEST__F_color__save_1_h +#define _TEST__F_color__save_1_h // f_color_save_1() only returns failures by other functions that have their own tests. @@ -28,4 +28,4 @@ */ extern void test__f_color_save_1_works(void **state); -#endif // _TEST__F_color__save_1 +#endif // _TEST__F_color__save_1_h diff --git a/level_0/f_color/tests/c/test-color-save_2.h b/level_0/f_color/tests/c/test-color-save_2.h index b17b205..69c4422 100644 --- a/level_0/f_color/tests/c/test-color-save_2.h +++ b/level_0/f_color/tests/c/test-color-save_2.h @@ -7,8 +7,8 @@ * * Test the color project. */ -#ifndef _TEST__F_color__save_2 -#define _TEST__F_color__save_2 +#ifndef _TEST__F_color__save_2_h +#define _TEST__F_color__save_2_h // f_color_save_2() only returns failures by other functions that have their own tests. @@ -28,4 +28,4 @@ */ extern void test__f_color_save_2_works(void **state); -#endif // _TEST__F_color__save_2 +#endif // _TEST__F_color__save_2_h diff --git a/level_0/f_color/tests/c/test-color-save_3.h b/level_0/f_color/tests/c/test-color-save_3.h index 135554f..33b874e 100644 --- a/level_0/f_color/tests/c/test-color-save_3.h +++ b/level_0/f_color/tests/c/test-color-save_3.h @@ -7,8 +7,8 @@ * * Test the color project. */ -#ifndef _TEST__F_color__save_3 -#define _TEST__F_color__save_3 +#ifndef _TEST__F_color__save_3_h +#define _TEST__F_color__save_3_h // f_color_save_3() only returns failures by other functions that have their own tests. @@ -28,4 +28,4 @@ */ extern void test__f_color_save_3_works(void **state); -#endif // _TEST__F_color__save_3 +#endif // _TEST__F_color__save_3_h diff --git a/level_0/f_color/tests/c/test-color-save_4.h b/level_0/f_color/tests/c/test-color-save_4.h index 1adf336..cf177ef 100644 --- a/level_0/f_color/tests/c/test-color-save_4.h +++ b/level_0/f_color/tests/c/test-color-save_4.h @@ -7,8 +7,8 @@ * * Test the color project. */ -#ifndef _TEST__F_color__save_4 -#define _TEST__F_color__save_4 +#ifndef _TEST__F_color__save_4_h +#define _TEST__F_color__save_4_h // f_color_save_4() only returns failures by other functions that have their own tests. @@ -28,4 +28,4 @@ */ extern void test__f_color_save_4_works(void **state); -#endif // _TEST__F_color__save_4 +#endif // _TEST__F_color__save_4_h diff --git a/level_0/f_color/tests/c/test-color-save_5.h b/level_0/f_color/tests/c/test-color-save_5.h index fad16f1..6bc2aad 100644 --- a/level_0/f_color/tests/c/test-color-save_5.h +++ b/level_0/f_color/tests/c/test-color-save_5.h @@ -7,8 +7,8 @@ * * Test the color project. */ -#ifndef _TEST__F_color__save_5 -#define _TEST__F_color__save_5 +#ifndef _TEST__F_color__save_5_h +#define _TEST__F_color__save_5_h // f_color_save_5() only returns failures by other functions that have their own tests. @@ -28,4 +28,4 @@ */ extern void test__f_color_save_5_works(void **state); -#endif // _TEST__F_color__save_5 +#endif // _TEST__F_color__save_5_h diff --git a/level_0/f_console/tests/c/test-console-identify.h b/level_0/f_console/tests/c/test-console-identify.h index 7472bb6..11d6ec1 100644 --- a/level_0/f_console/tests/c/test-console-identify.h +++ b/level_0/f_console/tests/c/test-console-identify.h @@ -7,8 +7,8 @@ * * Test the console project. */ -#ifndef _TEST__F_console_identify_ -#define _TEST__F_console_identify_ +#ifndef _TEST__F_console_identify_h +#define _TEST__F_console_identify_h // f_console_identify() doesn't return failure. @@ -28,4 +28,4 @@ */ extern void test__f_console_identify__works(void **state); -#endif // _TEST__F_console_identify_ +#endif // _TEST__F_console_identify_h diff --git a/level_0/f_console/tests/c/test-console-parameter_prioritize_left.h b/level_0/f_console/tests/c/test-console-parameter_prioritize_left.h index 46b9085..609ffae 100644 --- a/level_0/f_console/tests/c/test-console-parameter_prioritize_left.h +++ b/level_0/f_console/tests/c/test-console-parameter_prioritize_left.h @@ -7,8 +7,8 @@ * * Test the console project. */ -#ifndef _TEST__F_console_parameter_prioritize_left_ -#define _TEST__F_console_parameter_prioritize_left_ +#ifndef _TEST__F_console_parameter_prioritize_left_h +#define _TEST__F_console_parameter_prioritize_left_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_console_parameter_prioritize_left__fails(void **state); */ extern void test__f_console_parameter_prioritize_left__works(void **state); -#endif // _TEST__F_console_parameter_prioritize_left_ +#endif // _TEST__F_console_parameter_prioritize_left_h diff --git a/level_0/f_console/tests/c/test-console-parameter_prioritize_right.h b/level_0/f_console/tests/c/test-console-parameter_prioritize_right.h index 36c2d9b..156bc59 100644 --- a/level_0/f_console/tests/c/test-console-parameter_prioritize_right.h +++ b/level_0/f_console/tests/c/test-console-parameter_prioritize_right.h @@ -7,8 +7,8 @@ * * Test the console project. */ -#ifndef _TEST__F_console_parameter_prioritize_right_ -#define _TEST__F_console_parameter_prioritize_right_ +#ifndef _TEST__F_console_parameter_prioritize_right_h +#define _TEST__F_console_parameter_prioritize_right_h /** * Test that function fails. @@ -33,4 +33,4 @@ extern void test__f_console_parameter_prioritize_right__fails(void **state); */ extern void test__f_console_parameter_prioritize_right__works(void **state); -#endif // _TEST__F_console_parameter_prioritize_right_ +#endif // _TEST__F_console_parameter_prioritize_right_h diff --git a/level_0/f_console/tests/c/test-console-parameter_process.h b/level_0/f_console/tests/c/test-console-parameter_process.h index cb04c45..68c6b9b 100644 --- a/level_0/f_console/tests/c/test-console-parameter_process.h +++ b/level_0/f_console/tests/c/test-console-parameter_process.h @@ -7,8 +7,8 @@ * * Test the console project. */ -#ifndef _TEST__F_console_parameter_process_ -#define _TEST__F_console_parameter_process_ +#ifndef _TEST__F_console_parameter_process_h +#define _TEST__F_console_parameter_process_h // f_console_parameter_process() only returns memory failures. @@ -42,4 +42,4 @@ extern void test__f_console_parameter_process__only_remaining(void **state); */ extern void test__f_console_parameter_process__works(void **state); -#endif // _TEST__F_console_parameter_process_ +#endif // _TEST__F_console_parameter_process_h