Skip to content

Commit 9a533bd

Browse files
committed
chore: reorder tests
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 7dd1e0f commit 9a533bd

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

lib/node_modules/@stdlib/lapack/base/dgtts2/test/test.dgtts2.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ tape( 'the function solves A * X = B (row-major, nrhs > 1)', function test( t )
165165
t.end();
166166
});
167167

168-
tape( 'the function solves A * X = B (column-major, nrhs > 1)', function test( t ) {
168+
tape( 'the function solves A * X = B (row-major, nrhs <= 1)', function test( t ) {
169169
var expectedX;
170170
var IPIV;
171171
var data;
@@ -176,7 +176,7 @@ tape( 'the function solves A * X = B (column-major, nrhs > 1)', function test( t
176176
var B;
177177
var X;
178178

179-
data = COL_MAJOR_NO_TRANS_NRHS_GT_ONE;
179+
data = ROW_MAJOR_TRANS_NRHS_EQ_ONE;
180180

181181
DL = new Float64Array( data.DL );
182182
D = new Float64Array( data.D );
@@ -193,7 +193,7 @@ tape( 'the function solves A * X = B (column-major, nrhs > 1)', function test( t
193193
t.end();
194194
});
195195

196-
tape( 'the function solves A**T * X = B (row-major, nrhs > 1)', function test( t ) {
196+
tape( 'the function solves A * X = B (column-major, nrhs > 1)', function test( t ) {
197197
var expectedX;
198198
var IPIV;
199199
var data;
@@ -204,7 +204,7 @@ tape( 'the function solves A**T * X = B (row-major, nrhs > 1)', function test( t
204204
var B;
205205
var X;
206206

207-
data = ROW_MAJOR_TRANS_NRHS_GT_ONE;
207+
data = COL_MAJOR_NO_TRANS_NRHS_GT_ONE;
208208

209209
DL = new Float64Array( data.DL );
210210
D = new Float64Array( data.D );
@@ -221,7 +221,7 @@ tape( 'the function solves A**T * X = B (row-major, nrhs > 1)', function test( t
221221
t.end();
222222
});
223223

224-
tape( 'the function solves A**T * X = B (column-major, nrhs > 1)', function test( t ) {
224+
tape( 'the function solves A * X = B (column-major, nrhs <= 1)', function test( t ) {
225225
var expectedX;
226226
var IPIV;
227227
var data;
@@ -232,7 +232,7 @@ tape( 'the function solves A**T * X = B (column-major, nrhs > 1)', function test
232232
var B;
233233
var X;
234234

235-
data = COL_MAJOR_TRANS_NRHS_GT_ONE;
235+
data = COL_MAJOR_NO_TRANS_NRHS_EQ_ONE;
236236

237237
DL = new Float64Array( data.DL );
238238
D = new Float64Array( data.D );
@@ -249,7 +249,7 @@ tape( 'the function solves A**T * X = B (column-major, nrhs > 1)', function test
249249
t.end();
250250
});
251251

252-
tape( 'the function solves A * X = B (column-major, nrhs <= 1)', function test( t ) {
252+
tape( 'the function solves A**T * X = B (row-major, nrhs > 1)', function test( t ) {
253253
var expectedX;
254254
var IPIV;
255255
var data;
@@ -260,7 +260,7 @@ tape( 'the function solves A * X = B (column-major, nrhs <= 1)', function test(
260260
var B;
261261
var X;
262262

263-
data = COL_MAJOR_NO_TRANS_NRHS_EQ_ONE;
263+
data = ROW_MAJOR_TRANS_NRHS_GT_ONE;
264264

265265
DL = new Float64Array( data.DL );
266266
D = new Float64Array( data.D );
@@ -277,7 +277,7 @@ tape( 'the function solves A * X = B (column-major, nrhs <= 1)', function test(
277277
t.end();
278278
});
279279

280-
tape( 'the function solves A**T * X = B (column-major, nrhs <= 1)', function test( t ) {
280+
tape( 'the function solves A**T * X = B (row-major, nrhs <= 1)', function test( t ) {
281281
var expectedX;
282282
var IPIV;
283283
var data;
@@ -288,7 +288,7 @@ tape( 'the function solves A**T * X = B (column-major, nrhs <= 1)', function tes
288288
var B;
289289
var X;
290290

291-
data = COL_MAJOR_TRANS_NRHS_EQ_ONE;
291+
data = ROW_MAJOR_TRANS_NRHS_EQ_ONE;
292292

293293
DL = new Float64Array( data.DL );
294294
D = new Float64Array( data.D );
@@ -305,7 +305,7 @@ tape( 'the function solves A**T * X = B (column-major, nrhs <= 1)', function tes
305305
t.end();
306306
});
307307

308-
tape( 'the function solves A**T * X = B (row-major, nrhs <= 1)', function test( t ) {
308+
tape( 'the function solves A**T * X = B (column-major, nrhs > 1)', function test( t ) {
309309
var expectedX;
310310
var IPIV;
311311
var data;
@@ -316,7 +316,7 @@ tape( 'the function solves A**T * X = B (row-major, nrhs <= 1)', function test(
316316
var B;
317317
var X;
318318

319-
data = ROW_MAJOR_TRANS_NRHS_EQ_ONE;
319+
data = COL_MAJOR_TRANS_NRHS_GT_ONE;
320320

321321
DL = new Float64Array( data.DL );
322322
D = new Float64Array( data.D );
@@ -333,7 +333,7 @@ tape( 'the function solves A**T * X = B (row-major, nrhs <= 1)', function test(
333333
t.end();
334334
});
335335

336-
tape( 'the function solves A * X = B (row-major, nrhs <= 1)', function test( t ) {
336+
tape( 'the function solves A**T * X = B (column-major, nrhs <= 1)', function test( t ) {
337337
var expectedX;
338338
var IPIV;
339339
var data;
@@ -344,7 +344,7 @@ tape( 'the function solves A * X = B (row-major, nrhs <= 1)', function test( t )
344344
var B;
345345
var X;
346346

347-
data = ROW_MAJOR_TRANS_NRHS_EQ_ONE;
347+
data = COL_MAJOR_TRANS_NRHS_EQ_ONE;
348348

349349
DL = new Float64Array( data.DL );
350350
D = new Float64Array( data.D );

0 commit comments

Comments
 (0)