diff options
author | Jeongho Hwang <jbera.hwang@samsung.com> | 2012-09-19 13:15:55 +0900 |
---|---|---|
committer | Jeongho Hwang <jbera.hwang@samsung.com> | 2012-09-19 13:15:55 +0900 |
commit | c8b261d409e1cfebcc26539c58530479c531732f (patch) | |
tree | bd3365fbecb87b018ceca8bc8ef24b5db63e2ae6 /test/test_hashutil.c | |
parent | 3c73bcec3308588a22bf7596adaa990942215db4 (diff) | |
download | ccache-master.tar.gz ccache-master.tar.bz2 ccache-master.zip |
Tizen 2.0 AlphaHEADtizen_2.3.1_releasesubmit/tizen_2.3.1/20150915.0950272.0_alphatizen_2.3.1master2.0alpha
Signed-off-by: Jeongho Hwang <jbera.hwang@samsung.com>
Diffstat (limited to 'test/test_hashutil.c')
-rw-r--r-- | test/test_hashutil.c | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/test/test_hashutil.c b/test/test_hashutil.c new file mode 100644 index 0000000..225841a --- /dev/null +++ b/test/test_hashutil.c @@ -0,0 +1,102 @@ +/* + * Copyright (C) 2010 Joel Rosdahl + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 51 + * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/* + * This file contains tests for functions in hashutil.c. + */ + +#include "ccache.h" +#include "hashutil.h" +#include "test/framework.h" +#include "test/util.h" + +TEST_SUITE(hashutil) + +TEST(hash_command_output_simple) +{ + struct mdfour h1, h2; + hash_start(&h1); + hash_start(&h2); + CHECK(hash_command_output(&h1, "echo", "not used")); + CHECK(hash_command_output(&h2, "echo", "not used")); + CHECK(hash_equal(&h1, &h2)); +} + +TEST(hash_command_output_space_removal) +{ + struct mdfour h1, h2; + hash_start(&h1); + hash_start(&h2); + CHECK(hash_command_output(&h1, "echo", "not used")); + CHECK(hash_command_output(&h2, " echo ", "not used")); + CHECK(hash_equal(&h1, &h2)); +} + +TEST(hash_command_output_hash_inequality) +{ + struct mdfour h1, h2; + hash_start(&h1); + hash_start(&h2); + CHECK(hash_command_output(&h1, "echo foo", "not used")); + CHECK(hash_command_output(&h2, "echo bar", "not used")); + CHECK(!hash_equal(&h1, &h2)); +} + +TEST(hash_command_output_compiler_substitution) +{ + struct mdfour h1, h2; + hash_start(&h1); + hash_start(&h2); + CHECK(hash_command_output(&h1, "echo foo", "not used")); + CHECK(hash_command_output(&h2, "%compiler% foo", "echo")); + CHECK(hash_equal(&h1, &h2)); +} + +TEST(hash_command_output_stdout_versus_stderr) +{ + struct mdfour h1, h2; + hash_start(&h1); + hash_start(&h2); + create_file("stderr.sh", "#!/bin/sh\necho foo >&2\n"); + chmod("stderr.sh", 0555); + CHECK(hash_command_output(&h1, "echo foo", "not used")); + CHECK(hash_command_output(&h2, "./stderr.sh", "not used")); + CHECK(hash_equal(&h1, &h2)); +} + +TEST(hash_multicommand_output) +{ + struct mdfour h1, h2; + hash_start(&h1); + hash_start(&h2); + create_file("foo.sh", "#!/bin/sh\necho foo\necho bar\n"); + chmod("foo.sh", 0555); + CHECK(hash_multicommand_output(&h2, "echo foo; echo bar", "not used")); + CHECK(hash_multicommand_output(&h1, "./foo.sh", "not used")); + CHECK(hash_equal(&h1, &h2)); +} + +TEST(hash_multicommand_output_error_handling) +{ + struct mdfour h1, h2; + hash_start(&h1); + hash_start(&h2); + CHECK(!hash_multicommand_output(&h2, "false; true", "not used")); +} + +TEST_SUITE_END |