mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Markdown files in the docs/ directory can now be annotated to turn
fenced C code blocks into unit tests. The recognized syntax is:
[doctest]: # (name="test.c", test="run")
```c
// unit test code
```
The commit also fixes the issues revealed during the initial
annotation.
JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
46 lines
523 B
Plaintext
46 lines
523 B
Plaintext
# Produced files
|
|
.mbedignore
|
|
build/*
|
|
|
|
# IDE related files
|
|
nbproject
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
.idea
|
|
|
|
# Random Trash
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
core
|
|
vgcore.*
|
|
*.orig
|
|
*.directory
|
|
*.patch
|
|
.tags*
|
|
cscope.*
|
|
__pycache__
|
|
*.pyc
|
|
.DS_Store
|
|
|
|
# ctags and ID database
|
|
tags
|
|
ID
|
|
|
|
# targets
|
|
jerry-targetjs.h
|
|
targets/mbed/libjerry
|
|
targets/mbed/build
|
|
targets/mbed/yotta_modules
|
|
targets/mbed/yotta_targets
|
|
.output
|
|
targets/esp8266/output.map
|
|
targets/esp8266/libs
|
|
|
|
# Generated documentation
|
|
docs/doxygen
|
|
|
|
# Tests
|
|
tests/test262/
|
|
tests/unit-doc/*.c
|