Commit f0411ec9 authored by Thomas Van Lenten's avatar Thomas Van Lenten

Update the Mac build script to include the conformance tests

- Kick off the conformance tests
- Add missing ignore for something generated by a build on the conformance directory.
parent b6a32e90
...@@ -104,4 +104,5 @@ conformance/conformance-cpp ...@@ -104,4 +104,5 @@ conformance/conformance-cpp
conformance/conformance-test-runner conformance/conformance-test-runner
conformance/conformance.pb.cc conformance/conformance.pb.cc
conformance/conformance.pb.h conformance/conformance.pb.h
conformance/conformance.rb
conformance/protoc_middleman conformance/protoc_middleman
...@@ -114,7 +114,7 @@ while [[ $# != 0 ]]; do ...@@ -114,7 +114,7 @@ while [[ $# != 0 ]]; do
done done
# Into the proto dir. # Into the proto dir.
pushd "${ProtoRootDir}" cd "${ProtoRootDir}"
# if no Makefile, force the autogen. # if no Makefile, force the autogen.
if [[ ! -f Makefile ]] ; then if [[ ! -f Makefile ]] ; then
...@@ -160,6 +160,10 @@ header "Building" ...@@ -160,6 +160,10 @@ header "Building"
# at random. # at random.
wrapped_make -j "${NUM_MAKE_JOBS}" all wrapped_make -j "${NUM_MAKE_JOBS}" all
wrapped_make -j "${NUM_MAKE_JOBS}" check wrapped_make -j "${NUM_MAKE_JOBS}" check
# Fire off the conformance tests also.
cd conformance
wrapped_make -j "${NUM_MAKE_JOBS}"
cd ..
header "Ensuring the ObjC descriptors are current." header "Ensuring the ObjC descriptors are current."
# Find the newest input file (protos, compiler, and the generator script). # Find the newest input file (protos, compiler, and the generator script).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment