Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Domain Data Mgmt Services
Seismic
Open ZGY
Commits
90cb8fd4
Commit
90cb8fd4
authored
Aug 05, 2021
by
Paal Kvamme
Browse files
Ad-hoc test for reproducing bug 671969, commented out.
parent
a4e914de
Pipeline
#56683
passed with stages
in 9 minutes and 13 seconds
Changes
1
Pipelines
2
Show whitespace changes
Inline
Side-by-side
native/src/test/test_api.cpp
View file @
90cb8fd4
...
@@ -2785,6 +2785,57 @@ test_bat_sd_zfp()
...
@@ -2785,6 +2785,57 @@ test_bat_sd_zfp()
do_testbat
<
float
,
64
,
true
>
(
cad
.
name
());
do_testbat
<
float
,
64
,
true
>
(
cad
.
name
());
}
}
#if 0 // Only for ad-hoc debugging
namespace {
SeismicStoreIOContext getContext()
{
using InternalZGY::Environment;
return SeismicStoreIOContext()
.sdurl(Environment::getStringEnv("OPENZGY_SDURL"))
.sdapikey(Environment::getStringEnv("OPENZGY_SDAPIKEY"))
.sdtoken(Environment::getStringEnv("OPENZGY_TOKEN") != "" ?
Environment::getStringEnv("OPENZGY_TOKEN") :
"FILE:carbon.slbapp.com", "");
}
}
/**
* Not usable as an automated test.
* Partly because it takes two hours to run, waiting for the access
* token to expire, and partly because somebody needs to check by hand
* that garbage data was not output to the console.
*/
static void test_bug_671969()
{
auto ctxt = getContext();
std::shared_ptr<OpenZGY::IZgyReader> reader =
OpenZGY::IZgyReader::open("sd://sntc/testdata/Synt2.zgy", &ctxt);
const std::array<std::int64_t,3> orig{0,0,0};
const std::array<std::int64_t,3> more{64,192,64};
const std::array<std::int64_t,3> size{64,64,64};
std::unique_ptr<float[]>buf(new float[64*64*64]);
try {
std::cerr << "1st read" << std::endl;
reader->read(orig, size, buf.get(), 0);
for (int ii=10; ii>0; --ii) {
std::cerr << ii << "... " << std::flush;
std::this_thread::sleep_for (std::chrono::minutes(12));
}
std::cerr << "0!" << std::endl;
std::cerr << "2nd read" << std::endl;
reader->read(more, size, buf.get(), 0);
std::cerr << "close" << std::endl;
reader->close();
std::cerr << "done" << std::endl;
}
catch(const std::exception& ex) {
std::cerr << "Exception: " << ex.what() << std::endl;
}
}
#endif // Ad-hoc debugging
#endif
#endif
class
Register
class
Register
...
@@ -2863,6 +2914,9 @@ public:
...
@@ -2863,6 +2914,9 @@ public:
register_sd_test
(
"api.bat_sd_2"
,
test_bat_sd_2
);
register_sd_test
(
"api.bat_sd_2"
,
test_bat_sd_2
);
register_sd_test
(
"api.bat_sd_4"
,
test_bat_sd_4
);
register_sd_test
(
"api.bat_sd_4"
,
test_bat_sd_4
);
register_sd_test
(
"api.bat_sd_zfp"
,
test_bat_sd_zfp
);
register_sd_test
(
"api.bat_sd_zfp"
,
test_bat_sd_zfp
);
#if 0 // Not usable as an automated test
register_sd_test("bug.671969", test_bug_671969);
#endif
#endif
#endif
}
}
}
dummy
;
}
dummy
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment