File README.SUSE of Package tela
# Using the Tela Test Framework on openSUSE / SLE The `tela` test framework and the included `s390x-tests-suite` are installed into `/usr/share/tela/`. By design, the framework relies heavily on `make` and dynamically compiles components during test execution. Because `/usr/share/tela/` is a read-only system directory, you must copy the framework to a local writable workspace before running tests. ## Running Tests in a Local Workspace **1. Copy the framework to your home directory:** ```bash cp -r /usr/share/tela ~/tela-workspace cd ~/tela-workspace make --makefile=tests/s390x-tests-suite/Makefile telarc > ~/.telarc make --makefile=tests/s390x-tests-suite/Makefile check make --makefile=tests/s390x-tests-suite/Makefile check LOG=my_custom_run.log V=1 ---