1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #691 from vpisarev:fix_2899

This commit is contained in:
Andrey Kamaev
2013-03-22 17:18:54 +04:00
committed by OpenCV Buildbot
2 changed files with 12 additions and 0 deletions
+9
View File
@@ -454,3 +454,12 @@ protected:
TEST(Core_InputOutput, huge) { CV_BigMatrixIOTest test; test.safe_run(); }
*/
TEST(Core_InputOutput, FileStorage)
{
std::string file = cv::tempfile(".xml");
cv::FileStorage f(file, cv::FileStorage::WRITE);
char arr[66];
sprintf(arr, "sprintf is hell %d", 666);
EXPECT_NO_THROW(f << arr);
}