Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.13 KB

README.md

File metadata and controls

48 lines (31 loc) · 1.13 KB

PLplot Docker

This project provides:

(1) Dockerfiles for generating docker images for the purpose of testing PLplot on multiple linux distributions.

(2) Code to run the tests and analyze the results.

The PLplot docker image repository is here

Basic Testing

SF repository master

docker run plplot/XXX 2>&1 | tee XXX.txt

Where XXX is a docker image, for example:

docker run plplot/debian-latest 2>&1 | tee debian-latest.txt

Local repository

docker run -v /absolute/path/to/local/plplot:/plplot_repo plplot/debian-latest 2>&1 | tee debian-latest.txt

Comprehensive Testing

python pull_all.py  # This will pull the latest images.
python test_all.py

By default test_all.py will test two images at once, if you want to run more (or less) tests in parallel use the --max_processes argument.

python test_all.py --max_processes 10

If you want to test a local repository use the --plplot_repo argument.

python test_all.py --plplot_repo /absolute/path/to/local/plplot_repo