Skip to content

Commit 874fec7

Browse files
committed
Force minimal mode to part tests
For some reasons, the output may change over successive runs. Forcing minimal mode as a workaround.
1 parent 84135a5 commit 874fec7

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

VERSIONS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
New in 4.6.1-14 (11 Sep 2023):
1+
New in 4.6.1-15 (12 Sep 2023):
22
- module -T: fixed -domain cylinder and circle, fixed tesr reading, made minor
33
fixes.
44
- module -M: fixed -elset, fixed -statelset group -elt hex, fixed -statnode

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import sphinx_rtd_theme
1212

1313
project = u'Neper'
14-
version = u'4.6.1-14'
15-
release = u'4.6.1-14'
14+
version = u'4.6.1-15'
15+
release = u'4.6.1-15'
1616
author = u'Romain Quey'
1717
copyright = u'Romain Quey'
1818
language = 'en'

src/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if(POLICY CMP0077)
77
cmake_policy(SET CMP0077 NEW)
88
endif()
99

10-
set(NEPER_VERSION \"4.6.1-14\")
10+
set(NEPER_VERSION \"4.6.1-15\")
1111
project(neper)
1212

1313
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8.1)

src/neut/neut_mesh/neut_mesh_op/neut_mesh_op.c

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ neut_mesh_set_zero (struct MESH *pMesh)
132132

133133
(*pMesh).EltQty = 0;
134134
(*pMesh).ElsetQty = 0;
135+
(*pMesh).CustomElsetQty = 0;
135136

136137
(*pMesh).EltNodes = NULL;
137138

tests/M/part/test.cmake

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
# Copyright(C) 2003-2022, Romain Quey.
33
# See the COPYING file in the top-level directory.
44

5-
set (test_command -M -loadmesh n2-id1.msh -part 4 -o test)
5+
set (test_mode_force_minimal 1)
6+
set (test_command -M -loadmesh n2-id1.msh -part 2 -o test)
67
include(../../test.cmake)

tests/M/part2/test.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
# Copyright(C) 2003-2022, Romain Quey.
33
# See the COPYING file in the top-level directory.
44

5+
set (test_mode_force_minimal 1)
56
set (test_command -M -loadmesh n2-id1.msh -part 2:2 -o test)
67
include(../../test.cmake)

tests/M/part_dim2/test.cmake

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
# Copyright(C) 2003-2022, Romain Quey.
33
# See the COPYING file in the top-level directory.
44

5-
set (test_command -M n2-id1-dim2.tess -part 4 -o test)
5+
set (test_mode_force_minimal 1)
6+
set (test_command -M n2-id1-dim2.tess -part 2 -o test)
67
include(../../test.cmake)

0 commit comments

Comments
 (0)