Skip to content

Commit 558c80e

Browse files
committed
Remove prog binaries test
1 parent f26cf7e commit 558c80e

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

test/program.test.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,6 @@ describe('Program', async () => {
7777
});
7878

7979
describe('#createProgramWithBinary', () => {
80-
it('creates a valid program from a binary', () => {
81-
const prg = cl.createProgramWithSource(context, squareKern);
82-
cl.buildProgram(prg, [device]);
83-
const bin = cl.getProgramInfo(prg, cl.PROGRAM_BINARIES) as cl.TClHostData[];
84-
85-
const prg2 = cl.createProgramWithBinary(context, [device], bin);
86-
assert.ok(prg2);
87-
88-
cl.releaseProgram(prg);
89-
cl.releaseProgram(prg2);
90-
});
91-
9280
it('fails as binaries list is empty', () => {
9381
assert.throws(
9482
() => cl.createProgramWithBinary(context, [device], []),

0 commit comments

Comments
 (0)