diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2015-01-04 20:00:37 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2015-01-04 20:00:37 +0200 |
commit | 7135e2797a80f224541080117313088273f02cad (patch) | |
tree | d6f5251c8c54227fe5e5662e09ff6db07b76b5ea /tests/SConstruct | |
parent | 77a71ceb6d8da3995c72bf8cb0656254c77deb8d (diff) |
Only run oneof test when protoc >= 2.6 is available
Diffstat (limited to 'tests/SConstruct')
-rw-r--r-- | tests/SConstruct | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/SConstruct b/tests/SConstruct index 9c222daa..61ce0c37 100644 --- a/tests/SConstruct +++ b/tests/SConstruct @@ -72,6 +72,13 @@ if not env.GetOption('clean'): else: conf.env.Append(PROTOCPATH = '/usr/include') + # Check protoc version + status, output = conf.TryAction('protoc --version') + if status: + conf.env.Append(PROTOC_VERSION = output) + else: + conf.env.Append(PROTOC_VERSION = "") + # Check if libmudflap is available (only with GCC) if 'gcc' in env['CC']: if conf.CheckLib('mudflap'): |