Clean up tests

This commit is contained in:
Alexey Osipov 2022-11-19 23:46:38 +03:00
parent e812599c2c
commit a582145755
6 changed files with 4164 additions and 4226 deletions

View File

@ -1,14 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"preLaunchTask": "build",
"program": "${fileDirname}/tests.exe",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

View File

@ -1,12 +0,0 @@
{
"files.associations": {
"stdbool.h": "c",
"c_kzg_4844.h": "c",
"stdint.h": "c",
"string.h": "c",
"inttypes.h": "c",
"stdlib.h": "c",
"sha256.h": "c",
"ckzg.h": "c"
}
}

View File

@ -1,35 +0,0 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "build",
"command": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\Llvm\\x64\\bin\\clang.exe",
"args": [
"-fcolor-diagnostics",
"-fansi-escape-codes",
"-g",
"${file}",
"-w",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe",
"-I../../src",
"-I../../blst/bindings",
"-I../../blst/src",
"../../blst/blst.lib",
"../../src/c_kzg_4844.c",
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,3 @@
// RUN: make run-test
#include "ckzg.h"
#include <stdio.h>
@ -55,6 +54,6 @@ void TestProofs(char * path){
int main() {
TestProofs("devnetv2-geth.txt");
TestProofs("devnetv3-geth.txt");
return 0;
}