Skip to content

Commit

Permalink
add diagnostic info
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Jun 3, 2023
1 parent ab611e8 commit 3dc3d09
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,12 @@ jobs:
nimble refresh --verbose -y
nimble install --verbose -y gmp jsony asynctools
- name: Print Nim version
if: runner.os != 'Windows'
- name: Print Nim & compiler versions
shell: bash
# gcc is an alias to Clang on MacOS
run: |
nim -v
gcc -v
- name: Run Constantine tests (UNIX with Assembly)
if: runner.os != 'Windows' && matrix.target.BACKEND == 'ASM'
Expand Down
20 changes: 10 additions & 10 deletions constantine.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -310,13 +310,13 @@ const testDesc: seq[tuple[path: string, useGMP: bool]] = @[
# Field
# ----------------------------------------------------------
("tests/math_fields/t_io_fields", false),
# ("tests/math_fields/t_finite_fields.nim", false),
# ("tests/math_fields/t_finite_fields_conditional_arithmetic.nim", false),
# ("tests/math_fields/t_finite_fields_mulsquare.nim", false),
# ("tests/math_fields/t_finite_fields_sqrt.nim", false),
# ("tests/math_fields/t_finite_fields_powinv.nim", false),
# ("tests/math_fields/t_finite_fields_vs_gmp.nim", true),
# ("tests/math_fields/t_fp_cubic_root.nim", false),
("tests/math_fields/t_finite_fields.nim", false),
("tests/math_fields/t_finite_fields_conditional_arithmetic.nim", false),
("tests/math_fields/t_finite_fields_mulsquare.nim", false),
("tests/math_fields/t_finite_fields_sqrt.nim", false),
("tests/math_fields/t_finite_fields_powinv.nim", false),
("tests/math_fields/t_finite_fields_vs_gmp.nim", true),
("tests/math_fields/t_fp_cubic_root.nim", false),

# Double-precision finite fields
# ----------------------------------------------------------
Expand Down Expand Up @@ -345,17 +345,17 @@ const testDesc: seq[tuple[path: string, useGMP: bool]] = @[

# Elliptic curve arithmetic
# ----------------------------------------------------------
# ("tests/math_elliptic_curves/t_ec_conversion.nim", false),
("tests/math_elliptic_curves/t_ec_conversion.nim", false),

# Elliptic curve arithmetic G1
# ----------------------------------------------------------
# ("tests/math_elliptic_curves/t_ec_shortw_prj_g1_add_double.nim", false),
("tests/math_elliptic_curves/t_ec_shortw_prj_g1_add_double.nim", false),
# ("tests/math_elliptic_curves/t_ec_shortw_prj_g1_mul_sanity.nim", false),
# ("tests/math_elliptic_curves/t_ec_shortw_prj_g1_mul_distri.nim", false),
("tests/math_elliptic_curves/t_ec_shortw_prj_g1_mul_vs_ref.nim", false),
# ("tests/math_elliptic_curves/t_ec_shortw_prj_g1_mixed_add.nim", false),

# ("tests/math_elliptic_curves/t_ec_shortw_jac_g1_add_double.nim", false),
("tests/math_elliptic_curves/t_ec_shortw_jac_g1_add_double.nim", false),
# ("tests/math_elliptic_curves/t_ec_shortw_jac_g1_mul_sanity.nim", false),
# ("tests/math_elliptic_curves/t_ec_shortw_jac_g1_mul_distri.nim", false),
("tests/math_elliptic_curves/t_ec_shortw_jac_g1_mul_vs_ref.nim", false),
Expand Down

0 comments on commit 3dc3d09

Please sign in to comment.