Skip to content

Commit

Permalink
WIP: working mapper
Browse files Browse the repository at this point in the history
  • Loading branch information
samvel1024 committed Dec 21, 2020
1 parent e7ba9bb commit ceeddb6
Show file tree
Hide file tree
Showing 13 changed files with 140 additions and 254 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 4 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
[package]
name = "laykeymap"
name = "kbct"
version = "0.1.0"
authors = ["Samvel Abrahamyan <=>"]
edition = "2018"

[[bin]]
name = "laykeymap"
name = "kbct"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[[bin]]
name = "test-util"
path = "src/util.rs"

[lib]
name = "kbct"
Expand All @@ -38,6 +33,6 @@ log = "0.4"
chrono = "0.4.13"
text_io = "0.1.8"
lazy_static = "1.4.0"
regex="1.4.2"
compare="0.1.0"
regex = "1.4.2"
compare = "0.1.0"
linked-hash-map = "0.5.3"
57 changes: 0 additions & 57 deletions README.md

This file was deleted.

2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function buildloop() {
function do_integration_test() {
for dir in ./tests/*; do
echo "Running tests in $dir"
sudo test-util replay --testcase "$dir/test.txt" --config "$dir/conf.yaml" || test_fail
sudo kbct test-replay -t "$dir/test.txt" -c "$dir/conf.yaml" || test_fail
done
test_passed

Expand Down
2 changes: 1 addition & 1 deletion src/kbct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,4 @@ impl Kbct {


#[cfg(test)]
mod tests;
mod test;
Loading

0 comments on commit ceeddb6

Please sign in to comment.