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

Move ounit_tests to tests folder #7096

Merged
merged 2 commits into from
Oct 10, 2024
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
- Run `build_tests` on Windows. https://github.com/rescript-lang/rescript-compiler/pull/7065
- Rename folder "jscomp" to "compiler". https://github.com/rescript-lang/rescript-compiler/pull/7086
- Disable -bs-cross-module-opt for tests. https://github.com/rescript-lang/rescript-compiler/pull/7071
- Move `ounit_tests` into the `tests` folder. https://github.com/rescript-lang/rescript-compiler/pull/7096

# 12.0.0-alpha.3

Expand Down
2 changes: 1 addition & 1 deletion compiler/dune
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(dirs bsb bsb_exe bsb_helper bsb_helper_exe bsc cmij common core depends ext
frontend gentype jsoo js_parser ml ounit_tests syntax)
frontend gentype jsoo js_parser ml syntax)

(env
(dev
Expand Down
2 changes: 1 addition & 1 deletion dune
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(dirs compiler)
(dirs compiler tests)
1 change: 1 addition & 0 deletions tests/dune
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(dirs ounit_tests)
File renamed without changes.