Hash :
87a4a683
Author :
Thomas de Grivel
Date :
2024-10-13T10:22:17
Before running the tests, ensure KC3 is correctly installed. You can consult the KC3 installation guide for this.
make demo_gl
Press Q to quit, F for fullscreen, Left and Right arrows to move through sequences.
Other targets exist :
make demo_gl_asan
make gdb_demo_gl
make lldb_demo_gl
make demo
Press Q to quit, Left and Right arrows to move through sequences.
Other targets exist :
make demo_asan
make gdb_demo
make lldb_demo
make test_httpd
And direct your browser to http://127.0.0.1:58000/ .
make test
All the tests will be run. More specific targets exist :
make test_libkc3
make test_ikc3
make test_libkc3_asan
make test_ikc3_asan
make test_asan
Top : KC3 README.md
Previous : KC3 installation guide
Next : KC3 usage guide
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
# Testing KC3
Before running the tests, ensure KC3 is correctly installed.
You can consult the [KC3 installation guide](INSTALL.md) for this.
## Running the OpenGL demo
```sh
make demo_gl
```
Press Q to quit, F for fullscreen, Left and Right arrows to move
through sequences.
Other targets exist :
```sh
make demo_gl_asan
make gdb_demo_gl
make lldb_demo_gl
```
## Running the Cairo demo
```sh
make demo
```
Press Q to quit, Left and Right arrows to move through sequences.
Other targets exist :
```sh
make demo_asan
make gdb_demo
make lldb_demo
```
## Running the HTTPd demo
```sh
make test_httpd
```
And direct your browser to http://127.0.0.1:58000/ .
## Running the tests
```sh
make test
```
All the tests will be run. More specific targets exist :
```sh
make test_libkc3
make test_ikc3
make test_libkc3_asan
make test_ikc3_asan
make test_asan
```
---
Top : [KC3 README.md](README.md)
Previous : [KC3 installation guide](INSTALL.md)
Next : [KC3 usage guide](USAGE.md)