2015-11-01 14:05:51 +01:00
|
|
|
#! /usr/bin/env python
|
2015-02-26 17:56:25 +01:00
|
|
|
# Copyright 2015 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2015-02-26 17:30:19 +01:00
|
|
|
import glob
|
|
|
|
import os
|
2015-12-03 17:16:19 +01:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2015-02-26 17:30:19 +01:00
|
|
|
|
2015-12-03 17:16:19 +01:00
|
|
|
if not os.path.exists("build/libolm.so"):
|
|
|
|
print >> sys.stderr, \
|
|
|
|
"libolm has not been built. Run ./build_shared_library.py first."
|
|
|
|
exit(1)
|
2015-02-26 17:30:19 +01:00
|
|
|
|
|
|
|
test_files = glob.glob("tests/test_*.cpp")
|
|
|
|
|
2015-12-03 13:20:58 +01:00
|
|
|
compile_args = ("g++ -g -O0 -Itests/include -Iinclude -Ilib --std=c++11 "+
|
|
|
|
"-L build").split()
|
2015-02-26 17:30:19 +01:00
|
|
|
|
2015-12-03 13:20:58 +01:00
|
|
|
def run(args, *xargs, **kwargs):
|
2015-06-09 19:03:01 +02:00
|
|
|
print " ".join(args)
|
2015-12-03 13:20:58 +01:00
|
|
|
subprocess.check_call(args, *xargs, **kwargs)
|
2015-06-09 19:03:01 +02:00
|
|
|
|
2015-02-26 17:30:19 +01:00
|
|
|
for test_file in test_files:
|
2015-12-03 13:20:58 +01:00
|
|
|
exe_file = "build/" + test_file[6:-4]
|
|
|
|
run(compile_args + [test_file, "-lolm", "-o", exe_file])
|
|
|
|
run([exe_file], env={'LD_LIBRARY_PATH':'./build'})
|