Skip to content

Commit

Permalink
Merge pull request #217 from riscv-non-isa/fix-rvtest-case-strings
Browse files Browse the repository at this point in the history
fix the lower case `i` in the `RVTEST_CASE` macros used in the shift …
  • Loading branch information
neelgala authored Oct 15, 2021
2 parents 1070548 + 7f99888 commit aebb356
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# CHANGELOG

## [2.5.3] - 2021-10-15
- fix the lower case `i` in the `RVTEST_CASE` macros used in the shift operation tests.

## [2.5.2] - 2021-10-14
- update format for aes32 and sm4 instructions
- update reference signature for sha256 and sm3 instructions in rv64i_m/K_unratified
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv32i_m/I/src/sll-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV32i")
RVTEST_ISA("RV32I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv32i_m/I/src/sra-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV32i")
RVTEST_ISA("RV32I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv32i_m/I/src/srl-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV32i")
RVTEST_ISA("RV32I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv64i_m/I/src/sll-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV64i")
RVTEST_ISA("RV64I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv64i_m/I/src/sllw-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV64i")
RVTEST_ISA("RV64I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv64i_m/I/src/sra-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV64i")
RVTEST_ISA("RV64I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv64i_m/I/src/sraw-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV64i")
RVTEST_ISA("RV64I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv64i_m/I/src/srl-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV64i")
RVTEST_ISA("RV64I")

.section .text.init
.globl rvtest_entry_point
Expand Down
2 changes: 1 addition & 1 deletion riscv-test-suite/rv64i_m/I/src/srlw-01.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//
#include "model_test.h"
#include "arch_test.h"
RVTEST_ISA("RV64i")
RVTEST_ISA("RV64I")

.section .text.init
.globl rvtest_entry_point
Expand Down

0 comments on commit aebb356

Please sign in to comment.