Clean up tests
This commit is contained in:
parent
e812599c2c
commit
a582145755
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"type": "lldb",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "Launch",
|
|
||||||
"preLaunchTask": "build",
|
|
||||||
"program": "${fileDirname}/tests.exe",
|
|
||||||
"args": [],
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
// RUN: make run-test
|
// RUN: make run-test
|
||||||
#include "ckzg.h"
|
#include "ckzg.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -55,6 +54,6 @@ void TestProofs(char * path){
|
||||||
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
TestProofs("devnetv2-geth.txt");
|
TestProofs("devnetv3-geth.txt");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue