From 3ee897f5c9e1d9dbabc75f0d21a4804189d9e434 Mon Sep 17 00:00:00 2001 From: Anton Lavrik Date: Sun, 28 Jun 2015 17:37:31 -0700 Subject: [PATCH] Fix a flaky test occasionaly failing in travis-ci --- tests/cpp/Makefile | 4 ++-- tests/cpp/{Makefile.cpp => Makefile.test} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/cpp/{Makefile.cpp => Makefile.test} (100%) diff --git a/tests/cpp/Makefile b/tests/cpp/Makefile index 94ae15fd..c2761546 100644 --- a/tests/cpp/Makefile +++ b/tests/cpp/Makefile @@ -11,7 +11,7 @@ prep: test: $(PIQI) to-proto piqi.piqi protoc --cpp_out=. piqi.piqi.proto - $(MAKE) -f Makefile.cpp + $(MAKE) -f Makefile.test #protoc --decode=piqi_org.piqi.piqi piqi.piqi.proto < piqi.piqi.pb > t.ptext ./ctest > t.ptext1 #cmp t.ptext* @@ -19,5 +19,5 @@ test: clean: rm -f piqi.piqi.* t.* - $(MAKE) -f Makefile.cpp clean + $(MAKE) -f Makefile.test clean diff --git a/tests/cpp/Makefile.cpp b/tests/cpp/Makefile.test similarity index 100% rename from tests/cpp/Makefile.cpp rename to tests/cpp/Makefile.test