blob: a445b0f87c7c35c008f2938146bcaeb90accb802 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <library/cpp/scheme/scheme.h>
#include <library/cpp/scheme/tests/fuzz_ops/lib/fuzz_ops.h>
#include <library/cpp/testing/unittest/registar.h>
#include <util/string/hex.h>
Y_UNIT_TEST_SUITE(TTestSchemeFuzzOpsFoundBugs) {
using namespace NSc::NUt;
Y_UNIT_TEST(TestBug1) {
FuzzOps(HexDecode("98040129000525"), true);
}
};
|