Skip to content

Commit 0795760

Browse files
committed
Auto-generated commit
1 parent d45839c commit 0795760

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,9 @@ A total of 23 issues were closed in this release:
501501

502502
<details>
503503

504+
- [`9452043`](https://github.com/stdlib-js/stdlib/commit/945204344168a2cc6c9d2aa29b483c35fbe933a1) - **test:** account for N * alpha in test case _(by Philipp Burckhardt)_
505+
- [`01d345a`](https://github.com/stdlib-js/stdlib/commit/01d345a6335bc1fdfeb42c0c2888378fd332e6be) - **test:** pass in missing opts for native tests _(by Philipp Burckhardt)_
506+
- [`80d95e6`](https://github.com/stdlib-js/stdlib/commit/80d95e66ee80a2e03c81f11844e0d54bd79029fc) - **test:** pass in missing opts for native tests _(by Philipp Burckhardt)_
504507
- [`97e8058`](https://github.com/stdlib-js/stdlib/commit/97e8058cf6d707a5451cc5528e8c0814f138543f) - **feat:** add `blas/ext/base/gindex-of` [(#7493)](https://github.com/stdlib-js/stdlib/pull/7493) _(by Muhammad Haris, Athan Reines, stdlib-bot)_
505508
- [`ea875d6`](https://github.com/stdlib-js/stdlib/commit/ea875d60ea897e1d599634ce69eabd740275dda4) - **feat:** add C implementation for `blas/base/dgemv` [(#7013)](https://github.com/stdlib-js/stdlib/pull/7013) _(by Shabareesh Shetty, Athan Reines, stdlib-bot)_
506509
- [`f27e62f`](https://github.com/stdlib-js/stdlib/commit/f27e62f31b16eb5c92f5c0af88b00b6d5124b9f6) - **fix:** provide correct number of arguments _(by Athan Reines)_

ext/base/dindex-of/test/test.dindex_of.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var opts = {
3636

3737
// TESTS //
3838

39-
tape( 'main export is a function', function test( t ) {
39+
tape( 'main export is a function', opts, function test( t ) {
4040
t.ok( true, __filename );
4141
t.strictEqual( typeof dindexOf, 'function', 'main export is a function' );
4242
t.end();

ext/base/dindex-of/test/test.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var opts = {
3636

3737
// TESTS //
3838

39-
tape( 'main export is a function', function test( t ) {
39+
tape( 'main export is a function', opts, function test( t ) {
4040
t.ok( true, __filename );
4141
t.strictEqual( typeof dindexOf, 'function', 'main export is a function' );
4242
t.end();

ext/base/dsapxsum/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ tape( 'the function adds a constant and calculates the sum of all strided array
6262

6363
x = new Float32Array( [ 1.0, 1.0e38, 1.0, -1.0e38 ] );
6464
v = dsapxsum( x.length, 5.0, x, 1, 0 );
65-
t.strictEqual( v, 0.0, 'returns expected value' );
65+
t.strictEqual( v, 20.0, 'returns expected value' );
6666

6767
x = new Float32Array( 1e3 );
6868
for ( i = 0; i < 1e3; i++ ) {

ext/base/dssum/test/test.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ tape( 'the function calculates the sum of all strided array elements', opts, fun
8484
t.end();
8585
});
8686

87-
tape( 'the function preserves the sign of zero', function test( t ) {
87+
tape( 'the function preserves the sign of zero', opts, function test( t ) {
8888
var x;
8989
var v;
9090

ext/base/sindex-of/test/test.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var opts = {
3636

3737
// TESTS //
3838

39-
tape( 'main export is a function', function test( t ) {
39+
tape( 'main export is a function', opts, function test( t ) {
4040
t.ok( true, __filename );
4141
t.strictEqual( typeof sindexOf, 'function', 'main export is a function' );
4242
t.end();

ext/base/sindex-of/test/test.sindex_of.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var opts = {
3636

3737
// TESTS //
3838

39-
tape( 'main export is a function', function test( t ) {
39+
tape( 'main export is a function', opts, function test( t ) {
4040
t.ok( true, __filename );
4141
t.strictEqual( typeof sindexOf, 'function', 'main export is a function' );
4242
t.end();

0 commit comments

Comments
 (0)