e75a10d8ff
ProtoDump isn't currently useful, but will be when ToString emits JSON: fixed. ProtoBench: deleted; we should reinstate when there's a common proto3 benchmark. ProtoMunge: delete; not useful enough to merit fixing up. Removed the [TestFixture] from ByteStringTest as Travis uses a recent enough version of NUnit.
19 lines
500 B
Bash
Executable File
19 lines
500 B
Bash
Executable File
#!/bin/bash
|
|
# Use mono to build solution and run all tests.
|
|
|
|
# Adjust these to reflect the location of nunit-console in your system.
|
|
NUNIT_CONSOLE=nunit-console
|
|
|
|
# The rest you can leave intact
|
|
CONFIG=Release
|
|
KEYFILE=../keys/Google.ProtocolBuffers.snk # TODO(jtattermusch): signing!
|
|
SRC=$(dirname $0)/src
|
|
|
|
set -ex
|
|
|
|
echo Building the solution.
|
|
xbuild /p:Configuration=$CONFIG $SRC/ProtocolBuffers.sln
|
|
|
|
echo Running tests.
|
|
$NUNIT_CONSOLE $SRC/ProtocolBuffers.Test/bin/$CONFIG/Google.Protobuf.Test.dll
|