Skip to content

Commit

Permalink
Rename ounit.opam to oUnit.opam.
Browse files Browse the repository at this point in the history
  • Loading branch information
gildor478 committed Sep 22, 2019
1 parent 05c5c7e commit c4363d9
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(tests
(names test_list test_stack)
(libraries ounit))
(libraries oUnit))
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib/ounit-lwt/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(library
(name oUnitLwt)
(public_name ounit-lwt)
(libraries lwt lwt.unix ounit.advanced))
(libraries lwt lwt.unix oUnit.advanced))
2 changes: 1 addition & 1 deletion src/lib/ounit/advanced/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

(library
(name oUnitAdvanced)
(public_name ounit.advanced)
(public_name oUnit.advanced)
(wrapped false)
(libraries bytes stdlib-shims))
6 changes: 3 additions & 3 deletions src/lib/ounit/dune
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
(library
(name oUnit)
(public_name ounit)
(public_name oUnit)
(wrapped false)
(libraries unix ounit.advanced))
(libraries unix oUnit.advanced))

(documentation
(package ounit)
(package oUnit)
(mld_files index))
2 changes: 1 addition & 1 deletion src/lib/ounit/threads/dune
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(library
(name oUnitThreads)
(public_name ounit.threads)
(public_name oUnit.threads)
(private_modules oUnitRunnerThreads)
(libraries threads oUnit))
2 changes: 1 addition & 1 deletion test/common/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
(modules testCommonRunner segfault)
(c_names segfault)
(wrapped false)
(libraries ounit ounit.advanced))
(libraries oUnit oUnit.advanced))
2 changes: 1 addition & 1 deletion test/dune
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(test
(name test)
(libraries ounit ounit.advanced str testcommon)
(libraries oUnit oUnit.advanced str testcommon)
(deps
test.exe
fakeHTML/fakeHTML.exe
Expand Down
2 changes: 1 addition & 1 deletion test/fakeBadFinaliser/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(executable
(name fakeBadFinaliser)
(libraries ounit testcommon))
(libraries oUnit testcommon))
2 changes: 1 addition & 1 deletion test/fakeHTML/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(executable
(name fakeHTML)
(libraries ounit))
(libraries oUnit))
2 changes: 1 addition & 1 deletion test/fakeRunner/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(executable
(name fakeRunner)
(libraries ounit ounit.threads testcommon))
(libraries oUnit oUnit.threads testcommon))
2 changes: 1 addition & 1 deletion test/fakeShared/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(executable
(name fakeShared)
(libraries ounit ounit.threads))
(libraries oUnit oUnit.threads))
2 changes: 1 addition & 1 deletion test/lwt/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(test
(name test)
(package ounit-lwt)
(libraries ounit ounit-lwt testcommon))
(libraries oUnit ounit-lwt testcommon))
2 changes: 1 addition & 1 deletion test/lwt/testRunnerProcesses/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
(name testRunnerProcesses)
(package ounit-lwt)
(deps test.txt)
(libraries ounit lwt lwt.unix ounit-lwt)
(libraries oUnit lwt lwt.unix ounit-lwt)
(action (run %{test} -runner processes)))

0 comments on commit c4363d9

Please sign in to comment.