aboutsummaryrefslogtreecommitdiff
path: root/projects/grpc
diff options
context:
space:
mode:
authorMatt Kwong <matt-kwong@users.noreply.github.com>2017-11-08 11:53:40 -0800
committerAbhishek Arya <inferno@chromium.org>2017-11-08 11:53:40 -0800
commitd931f210b14c77348f2fc835d6729a651e91769a (patch)
tree8ecc6c834441db32d5b4cd5cfac45ddb8f1ec782 /projects/grpc
parentfdd0cff32a7bf678fc6a69e929def6ae9787c220 (diff)
downloadoss-fuzz-d931f210b14c77348f2fc835d6729a651e91769a.tar.gz
Convert .c files to .cc (#970)
Diffstat (limited to 'projects/grpc')
-rwxr-xr-xprojects/grpc/build.sh28
1 files changed, 14 insertions, 14 deletions
diff --git a/projects/grpc/build.sh b/projects/grpc/build.sh
index 182482bf9..d056bdd94 100755
--- a/projects/grpc/build.sh
+++ b/projects/grpc/build.sh
@@ -16,19 +16,19 @@
################################################################################
FUZZER_FILES="\
-test/core/json/fuzzer.c \
-test/core/client_channel/uri_fuzzer_test.c \
-test/core/http/request_fuzzer.c \
-test/core/http/response_fuzzer.c \
-test/core/nanopb/fuzzer_response.c \
-test/core/nanopb/fuzzer_serverlist.c \
-test/core/slice/percent_decode_fuzzer.c \
-test/core/slice/percent_encode_fuzzer.c \
-test/core/transport/chttp2/hpack_parser_fuzzer_test.c \
-test/core/end2end/fuzzers/api_fuzzer.c \
-test/core/end2end/fuzzers/client_fuzzer.c \
-test/core/end2end/fuzzers/server_fuzzer.c \
-test/core/security/ssl_server_fuzzer.c \
+test/core/json/fuzzer.cc \
+test/core/client_channel/uri_fuzzer_test.cc \
+test/core/http/request_fuzzer.cc \
+test/core/http/response_fuzzer.cc \
+test/core/nanopb/fuzzer_response.cc \
+test/core/nanopb/fuzzer_serverlist.cc \
+test/core/slice/percent_decode_fuzzer.cc \
+test/core/slice/percent_encode_fuzzer.cc \
+test/core/transport/chttp2/hpack_parser_fuzzer_test.cc \
+test/core/end2end/fuzzers/api_fuzzer.cc \
+test/core/end2end/fuzzers/client_fuzzer.cc \
+test/core/end2end/fuzzers/server_fuzzer.cc \
+test/core/security/ssl_server_fuzzer.cc \
"
FUZZER_DICTIONARIES="\
@@ -61,7 +61,7 @@ CFLAGS="${CFLAGS} -Iinclude -I."
CXXFLAGS="${CXXFLAGS} -Iinclude -I. -stdlib=libc++"
for file in $FUZZER_FILES; do
- fuzzer_name=$(basename $file .c)
+ fuzzer_name=$(basename $file .cc)
fuzzer_object="${file::-1}o"
echo "Building fuzzer $fuzzer_name"
$CC $CFLAGS \