Skip to content

Commit

Permalink
rename to bbctester
Browse files Browse the repository at this point in the history
  • Loading branch information
Docker committed Aug 6, 2024
1 parent 64f0070 commit 6cd9dc7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
54 changes: 27 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@ Original BBCTester runs a complete pipeline for an x86 assembly compiler and exe

Download the sources as a zip archive, unzip and install the package
```bash
$ unzip BBCStepTester-main.zip
Archive: BBCStepTester-main.zip
$ unzip BBCTester-main.zip
Archive: BBCTester-main.zip
0e3ce14f8587aafdcc6f64c07de0c2e3c2fde838
creating: BBCStepTester-main/
inflating: BBCStepTester-main/.gitignore
inflating: BBCStepTester-main/Makefile
inflating: BBCStepTester-main/README.md
inflating: BBCStepTester-main/dune
inflating: BBCStepTester-main/dune-project
inflating: BBCStepTester-main/main.ml
inflating: BBCStepTester-main/main.mli
inflating: BBCStepTester-main/pipeline.ml
inflating: BBCStepTester-main/runtime.ml
inflating: BBCStepTester-main/test.ml
inflating: BBCStepTester-main/test.mli
inflating: BBCStepTester-main/testeable.ml
inflating: BBCStepTester-main/type.ml
inflating: BBCStepTester-main/type.mli
inflating: BBCStepTester-main/util.ml

$ cd BBCStepTester-main
creating: BBCTester-main/
inflating: BBCTester-main/.gitignore
inflating: BBCTester-main/Makefile
inflating: BBCTester-main/README.md
inflating: BBCTester-main/dune
inflating: BBCTester-main/dune-project
inflating: BBCTester-main/main.ml
inflating: BBCTester-main/main.mli
inflating: BBCTester-main/pipeline.ml
inflating: BBCTester-main/runtime.ml
inflating: BBCTester-main/test.ml
inflating: BBCTester-main/test.mli
inflating: BBCTester-main/testeable.ml
inflating: BBCTester-main/type.ml
inflating: BBCTester-main/type.mli
inflating: BBCTester-main/util.ml

$ cd BBCTester-main

$ make install
dune build
Expand All @@ -52,16 +52,16 @@ Installing ...

Alternatively, you can clone the repository and install
```bash
$ git clone https://github.com/fabaindaiz/BBCStepTester
Cloning into 'BBCStepTester'...
$ git clone https://github.com/pleiad/BBCTester.git
Cloning into 'BBCTester'...
remote: Enumerating objects: 81, done.
remote: Counting objects: 100% (81/81), done.
remote: Compressing objects: 100% (55/55), done.
remote: Total 81 (delta 48), reused 51 (delta 25), pack-reused 0
Receiving objects: 100% (81/81), 17.79 KiB | 17.79 MiB/s, done.
Resolving deltas: 100% (48/48), done.

$ cd BBCStepTester
$ cd BBCTester

$ make install
dune build
Expand Down Expand Up @@ -92,9 +92,9 @@ val tests_from_dir :

```ocaml
(* Example of using tests_from_dir *)
open Bbcsteptester.Type
open Bbcsteptester.Main
open Bbcsteptester.Runtime
open Bbctester.Type
open Bbctester.Main
open Bbctester.Runtime
(* .......... *)
Expand All @@ -121,7 +121,7 @@ let () =
let name : string = "bbc" in
tests_from_dir ~name ~compiler ~runtime ~oracle "bbctests" in
run "Tests MiniCompiler" (ocaml_tests @ bbc_tests)
run "Tests CC5116 Compiler" (ocaml_tests @ bbc_tests)
```


Expand Down
4 changes: 2 additions & 2 deletions dune
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(library
(name bbcsteptester) ; Black-Box Compiler Tester
(public_name bbcsteptester)
(name bbctester) ; Black-Box Compiler Tester
(public_name bbctester)
(modules main pipeline runtime testeable test type util)
(libraries alcotest containers containers.unix str))
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(lang dune 3.10)


(name bbcsteptester)
(name bbctester)

; Not using opam because of not understood bug with generated `dune subst --root`
; (generate_opam_files true)
Expand All @@ -10,7 +10,7 @@
(maintainers "[email protected]")

(package
(name bbcsteptester)
(name bbctester)
(version 0.2)
(synopsis "Black-box compiler tester")
(description "Tester for the compilation lecture CC5116")
Expand Down

0 comments on commit 6cd9dc7

Please sign in to comment.