Skip to content

Commit

Permalink
Disable unused const variable and extend test time
Browse files Browse the repository at this point in the history
  • Loading branch information
d0iasm committed Apr 3, 2021
1 parent adf6077 commit 652296e
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -37,6 +37,6 @@ jobs:
make rvemu-cli
./target/release/rvemu-cli -k bin/xv6/kernel.bin -f bin/xv6/fs.img > out &
pid=$!
sleep 120
sleep 180
kill $pid
grep -q "init: starting sh" ./out
2 changes: 1 addition & 1 deletion src/devices/uart_cli.rs
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ const _UART_FCR: u64 = UART_BASE + 2;
/// 0 = an interrupt is pending and the ISR contents may be used as a pointer to the appropriate
/// interrupt service routine.
/// 1 = no interrupt is pending.
const UART_ISR: u64 = UART_BASE + 2;
const _UART_ISR: u64 = UART_BASE + 2;
/// Line control register.
const _UART_LCR: u64 = UART_BASE + 3;
/// Line status register.

0 comments on commit 652296e

Please sign in to comment.