├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYRIGHT ├── META ├── Makefile.am ├── NEWS ├── README.md ├── README_DAOS ├── README_HDF5 ├── README_LIBNFS ├── README_S3 ├── bootstrap ├── config ├── ax_prog_cc_mpi.m4 └── x_ac_meta.m4 ├── configure.ac ├── contrib ├── Makefile.am └── cbif.c ├── doc ├── Makefile.am ├── USER_GUIDE ├── doxygen │ └── Doxyfile ├── image-sources │ └── ior-accesses.pptx ├── mdtest.1 └── sphinx │ ├── README.md │ ├── changes.rst │ ├── conf.py │ ├── devDoc │ ├── CI.rst │ ├── doxygen.rst │ └── release.rst │ ├── index.rst │ ├── intro.rst │ └── userDoc │ ├── compatibility.rst │ ├── faq.rst │ ├── install.rst │ ├── options.rst │ ├── scripts.rst │ ├── tutorial-cache-vs-nocache.png │ ├── tutorial-ior-io-pattern.png │ ├── tutorial-ior-memPerNode-test.png │ ├── tutorial-ior-overflowing-cache.png │ ├── tutorial-ior-reorderTasks.png │ └── tutorial.rst ├── src ├── Makefile.am ├── aiori-CEPHFS.c ├── aiori-CHFS.c ├── aiori-DFS.c ├── aiori-DUMMY.c ├── aiori-FINCHFS.c ├── aiori-Gfarm.c ├── aiori-HDF5.c ├── aiori-HDFS.c ├── aiori-IME.c ├── aiori-LIBNFS.c ├── aiori-LIBNFS.h ├── aiori-MMAP.c ├── aiori-MPIIO.c ├── aiori-NCMPI.c ├── aiori-PMDK.c ├── aiori-POSIX.c ├── aiori-POSIX.h ├── aiori-RADOS.c ├── aiori-S3-4c.c ├── aiori-S3-libs3.c ├── aiori-aio.c ├── aiori-debug.h ├── aiori.c ├── aiori.h ├── ior-internal.h ├── ior-main.c ├── ior-output.c ├── ior.c ├── ior.h ├── iordef.h ├── md-workbench-main.c ├── md-workbench.c ├── md-workbench.h ├── mdtest-main.c ├── mdtest.c ├── mdtest.h ├── option.c ├── option.h ├── parse_options.c ├── parse_options.h ├── test │ ├── Makefile.am │ ├── example.c │ ├── lib.c │ └── lib.cpp ├── utilities-gpu.cu ├── utilities.c └── utilities.h ├── testing ├── basic-tests.sh ├── bug-multi-node.conf ├── build-hdfs.sh ├── build-pnetcdf.sh ├── complex-tests.sh ├── docker │ ├── README.md │ ├── centos6 │ │ ├── Dockerfile │ │ └── run-test.sh │ ├── centos7 │ │ ├── Dockerfile │ │ └── run-test.sh │ ├── centos8 │ │ ├── Dockerfile │ │ └── run-test.sh │ ├── ceph │ │ └── NOTES │ ├── prepare.sh │ ├── run-all-tests.sh │ ├── ubuntu16.04 │ │ ├── Dockerfile │ │ └── run-test.sh │ ├── ubuntu22.04-all-backends │ │ └── Dockerfile │ └── ubuntu22.04 │ │ ├── Dockerfile │ │ └── run-test.sh ├── libnfs │ ├── CMakeLists.txt │ ├── README.md │ └── src │ │ └── aiori-LIBNFS-test.c ├── mdtest-patterns │ ├── advanced │ │ ├── 3.txt │ │ ├── 4.txt │ │ └── 5.txt │ └── basic │ │ ├── 0.txt │ │ ├── 1.txt │ │ ├── 2.txt │ │ └── 3.txt ├── s3.sh ├── test-lib.sh └── test_comments.ior ├── travis-build.sh └── travis-test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /META: -------------------------------------------------------------------------------- 1 | Package: ior 2 | Version: 4.1.0+dev 3 | Release: 0 4 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/README.md -------------------------------------------------------------------------------- /README_DAOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/README_DAOS -------------------------------------------------------------------------------- /README_HDF5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/README_HDF5 -------------------------------------------------------------------------------- /README_LIBNFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/README_LIBNFS -------------------------------------------------------------------------------- /README_S3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/README_S3 -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -ivf 4 | -------------------------------------------------------------------------------- /config/ax_prog_cc_mpi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/config/ax_prog_cc_mpi.m4 -------------------------------------------------------------------------------- /config/x_ac_meta.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/config/x_ac_meta.m4 -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/cbif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/contrib/cbif.c -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/USER_GUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/USER_GUIDE -------------------------------------------------------------------------------- /doc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/doxygen/Doxyfile -------------------------------------------------------------------------------- /doc/image-sources/ior-accesses.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/image-sources/ior-accesses.pptx -------------------------------------------------------------------------------- /doc/mdtest.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/mdtest.1 -------------------------------------------------------------------------------- /doc/sphinx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/README.md -------------------------------------------------------------------------------- /doc/sphinx/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/changes.rst -------------------------------------------------------------------------------- /doc/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/conf.py -------------------------------------------------------------------------------- /doc/sphinx/devDoc/CI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/devDoc/CI.rst -------------------------------------------------------------------------------- /doc/sphinx/devDoc/doxygen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/devDoc/doxygen.rst -------------------------------------------------------------------------------- /doc/sphinx/devDoc/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/devDoc/release.rst -------------------------------------------------------------------------------- /doc/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/index.rst -------------------------------------------------------------------------------- /doc/sphinx/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/intro.rst -------------------------------------------------------------------------------- /doc/sphinx/userDoc/compatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/compatibility.rst -------------------------------------------------------------------------------- /doc/sphinx/userDoc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/faq.rst -------------------------------------------------------------------------------- /doc/sphinx/userDoc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/install.rst -------------------------------------------------------------------------------- /doc/sphinx/userDoc/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/options.rst -------------------------------------------------------------------------------- /doc/sphinx/userDoc/scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/scripts.rst -------------------------------------------------------------------------------- /doc/sphinx/userDoc/tutorial-cache-vs-nocache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/tutorial-cache-vs-nocache.png -------------------------------------------------------------------------------- /doc/sphinx/userDoc/tutorial-ior-io-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/tutorial-ior-io-pattern.png -------------------------------------------------------------------------------- /doc/sphinx/userDoc/tutorial-ior-memPerNode-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/tutorial-ior-memPerNode-test.png -------------------------------------------------------------------------------- /doc/sphinx/userDoc/tutorial-ior-overflowing-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/tutorial-ior-overflowing-cache.png -------------------------------------------------------------------------------- /doc/sphinx/userDoc/tutorial-ior-reorderTasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/tutorial-ior-reorderTasks.png -------------------------------------------------------------------------------- /doc/sphinx/userDoc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/doc/sphinx/userDoc/tutorial.rst -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/aiori-CEPHFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-CEPHFS.c -------------------------------------------------------------------------------- /src/aiori-CHFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-CHFS.c -------------------------------------------------------------------------------- /src/aiori-DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-DFS.c -------------------------------------------------------------------------------- /src/aiori-DUMMY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-DUMMY.c -------------------------------------------------------------------------------- /src/aiori-FINCHFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-FINCHFS.c -------------------------------------------------------------------------------- /src/aiori-Gfarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-Gfarm.c -------------------------------------------------------------------------------- /src/aiori-HDF5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-HDF5.c -------------------------------------------------------------------------------- /src/aiori-HDFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-HDFS.c -------------------------------------------------------------------------------- /src/aiori-IME.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-IME.c -------------------------------------------------------------------------------- /src/aiori-LIBNFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-LIBNFS.c -------------------------------------------------------------------------------- /src/aiori-LIBNFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-LIBNFS.h -------------------------------------------------------------------------------- /src/aiori-MMAP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-MMAP.c -------------------------------------------------------------------------------- /src/aiori-MPIIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-MPIIO.c -------------------------------------------------------------------------------- /src/aiori-NCMPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-NCMPI.c -------------------------------------------------------------------------------- /src/aiori-PMDK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-PMDK.c -------------------------------------------------------------------------------- /src/aiori-POSIX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-POSIX.c -------------------------------------------------------------------------------- /src/aiori-POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-POSIX.h -------------------------------------------------------------------------------- /src/aiori-RADOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-RADOS.c -------------------------------------------------------------------------------- /src/aiori-S3-4c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-S3-4c.c -------------------------------------------------------------------------------- /src/aiori-S3-libs3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-S3-libs3.c -------------------------------------------------------------------------------- /src/aiori-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-aio.c -------------------------------------------------------------------------------- /src/aiori-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori-debug.h -------------------------------------------------------------------------------- /src/aiori.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori.c -------------------------------------------------------------------------------- /src/aiori.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/aiori.h -------------------------------------------------------------------------------- /src/ior-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/ior-internal.h -------------------------------------------------------------------------------- /src/ior-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/ior-main.c -------------------------------------------------------------------------------- /src/ior-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/ior-output.c -------------------------------------------------------------------------------- /src/ior.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/ior.c -------------------------------------------------------------------------------- /src/ior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/ior.h -------------------------------------------------------------------------------- /src/iordef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/iordef.h -------------------------------------------------------------------------------- /src/md-workbench-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/md-workbench-main.c -------------------------------------------------------------------------------- /src/md-workbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/md-workbench.c -------------------------------------------------------------------------------- /src/md-workbench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/md-workbench.h -------------------------------------------------------------------------------- /src/mdtest-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/mdtest-main.c -------------------------------------------------------------------------------- /src/mdtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/mdtest.c -------------------------------------------------------------------------------- /src/mdtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/mdtest.h -------------------------------------------------------------------------------- /src/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/option.c -------------------------------------------------------------------------------- /src/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/option.h -------------------------------------------------------------------------------- /src/parse_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/parse_options.c -------------------------------------------------------------------------------- /src/parse_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/parse_options.h -------------------------------------------------------------------------------- /src/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/test/Makefile.am -------------------------------------------------------------------------------- /src/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/test/example.c -------------------------------------------------------------------------------- /src/test/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/test/lib.c -------------------------------------------------------------------------------- /src/test/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/test/lib.cpp -------------------------------------------------------------------------------- /src/utilities-gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/utilities-gpu.cu -------------------------------------------------------------------------------- /src/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/utilities.c -------------------------------------------------------------------------------- /src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/src/utilities.h -------------------------------------------------------------------------------- /testing/basic-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/basic-tests.sh -------------------------------------------------------------------------------- /testing/bug-multi-node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/bug-multi-node.conf -------------------------------------------------------------------------------- /testing/build-hdfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/build-hdfs.sh -------------------------------------------------------------------------------- /testing/build-pnetcdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/build-pnetcdf.sh -------------------------------------------------------------------------------- /testing/complex-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/complex-tests.sh -------------------------------------------------------------------------------- /testing/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/README.md -------------------------------------------------------------------------------- /testing/docker/centos6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/centos6/Dockerfile -------------------------------------------------------------------------------- /testing/docker/centos6/run-test.sh: -------------------------------------------------------------------------------- 1 | ../centos7/run-test.sh -------------------------------------------------------------------------------- /testing/docker/centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/centos7/Dockerfile -------------------------------------------------------------------------------- /testing/docker/centos7/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/centos7/run-test.sh -------------------------------------------------------------------------------- /testing/docker/centos8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/centos8/Dockerfile -------------------------------------------------------------------------------- /testing/docker/centos8/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/centos8/run-test.sh -------------------------------------------------------------------------------- /testing/docker/ceph/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/ceph/NOTES -------------------------------------------------------------------------------- /testing/docker/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/prepare.sh -------------------------------------------------------------------------------- /testing/docker/run-all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/run-all-tests.sh -------------------------------------------------------------------------------- /testing/docker/ubuntu16.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/ubuntu16.04/Dockerfile -------------------------------------------------------------------------------- /testing/docker/ubuntu16.04/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/ubuntu16.04/run-test.sh -------------------------------------------------------------------------------- /testing/docker/ubuntu22.04-all-backends/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/ubuntu22.04-all-backends/Dockerfile -------------------------------------------------------------------------------- /testing/docker/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /testing/docker/ubuntu22.04/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/docker/ubuntu22.04/run-test.sh -------------------------------------------------------------------------------- /testing/libnfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/libnfs/CMakeLists.txt -------------------------------------------------------------------------------- /testing/libnfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/libnfs/README.md -------------------------------------------------------------------------------- /testing/libnfs/src/aiori-LIBNFS-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/libnfs/src/aiori-LIBNFS-test.c -------------------------------------------------------------------------------- /testing/mdtest-patterns/advanced/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/mdtest-patterns/advanced/3.txt -------------------------------------------------------------------------------- /testing/mdtest-patterns/advanced/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/mdtest-patterns/advanced/4.txt -------------------------------------------------------------------------------- /testing/mdtest-patterns/advanced/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/mdtest-patterns/advanced/5.txt -------------------------------------------------------------------------------- /testing/mdtest-patterns/basic/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/mdtest-patterns/basic/0.txt -------------------------------------------------------------------------------- /testing/mdtest-patterns/basic/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/mdtest-patterns/basic/1.txt -------------------------------------------------------------------------------- /testing/mdtest-patterns/basic/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/mdtest-patterns/basic/2.txt -------------------------------------------------------------------------------- /testing/mdtest-patterns/basic/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/mdtest-patterns/basic/3.txt -------------------------------------------------------------------------------- /testing/s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/s3.sh -------------------------------------------------------------------------------- /testing/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/test-lib.sh -------------------------------------------------------------------------------- /testing/test_comments.ior: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/testing/test_comments.ior -------------------------------------------------------------------------------- /travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/travis-build.sh -------------------------------------------------------------------------------- /travis-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc/ior/HEAD/travis-test.sh --------------------------------------------------------------------------------