Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links in Ribbit's documentation #87

Merged
merged 2 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ replacing `pro` with the target language.

### Other examples and tests

For other examples and tests, you can look at the [examples](./src/examples) and [tests](./tests)
For other examples and tests, you can look at the [examples](./src/examples) and [tests](./src/tests)
directories.

The makefile in the `src` directory has these make targets:
Expand Down
6 changes: 3 additions & 3 deletions src/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ HOST=<host> make check-repl
```

Where `<host>` is the host language you want to test. For example, <host> can be any of `c`, `js`, `asm`, `hs`, `py`. See
the [front page](../README.md) for a list of all supported hosts.
the [front page](./../../README.md) for a list of all supported hosts.

# Test infrastructure

Expand All @@ -33,7 +33,7 @@ Given a host and test file, it will perform broadly the following steps:
the `;;;input:` comment in the source code of the test.
3. Compare the output of the target host file and the expected output specified in the test file with the `;;;expected` comment.

For more details about the test runner, see the [test-runner](test-runner) script or continue reading.
For more details about the test runner, see the [test-runner](./../run_test.sh) script or continue reading.

## Host Makefiles

Expand Down Expand Up @@ -64,7 +64,7 @@ Note that all of these variables can be redefined in the command line. For examp
HOST=c HOST_INTERPRETER="clang -o" TEST_TAGS=r4rs make check
```

For an example of Makefile, see the [c host makefile](../hosts/c/Makefile).
For an example of Makefile, see the [c host makefile](./../host/c/makefile).

## Test files

Expand Down
2 changes: 1 addition & 1 deletion src/tests/hosts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ primitive and other types of meta information. This meta information is annotate
`@@(` and `)@@` tags.

## How to run
To run those tests, go into the [src](../src) directory and run :
To run those tests, go into the `src` directory and run :

```
HOST={your host} make check-feature
Expand Down
Loading