Skip to content
Snippets Groups Projects
Commit 8672311d authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Give a clearer error if the library hasn't been built

parent a715fc7d
No related branches found
No related tags found
No related merge requests found
......@@ -13,12 +13,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import subprocess
import glob
import os
import subprocess
import sys
if not os.path.exists("build"):
os.mkdir("build")
if not os.path.exists("build/libolm.so"):
print >> sys.stderr, \
"libolm has not been built. Run ./build_shared_library.py first."
exit(1)
test_files = glob.glob("tests/test_*.cpp")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment