2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2022-02-24 18:45:25 +08:00
|
|
|
https://adxeproject.github.io/
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-06-18 07:07:33 +08:00
|
|
|
//
|
|
|
|
// Bug-15776.cpp
|
|
|
|
// cocos2d_tests
|
|
|
|
//
|
|
|
|
// Created by Ricardo Quesada on 6/17/16.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Bug-15776.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
2016-08-05 14:04:39 +08:00
|
|
|
//
|
|
|
|
// IMPORTANT:
|
|
|
|
// THIS TEST WILL CRASH ON TextureCache::addImage()
|
|
|
|
// THIS IS NOT A BUG
|
|
|
|
// It is expected to crash there
|
|
|
|
//
|
2016-06-18 07:07:33 +08:00
|
|
|
bool Bug15776Layer::init()
|
|
|
|
{
|
|
|
|
if (BugsTestBase::init())
|
|
|
|
{
|
2021-12-28 16:06:23 +08:00
|
|
|
cocos2d::Image* cocos2dxImage = new cocos2d::Image();
|
2020-09-01 11:43:03 +08:00
|
|
|
cocos2dxImage->initWithImageData(nullptr, 0, false);
|
2016-06-18 07:07:33 +08:00
|
|
|
// should not crash. invalid cocos2dImage
|
|
|
|
auto texture2d = Director::getInstance()->getTextureCache()->addImage(cocos2dxImage, "unused");
|
|
|
|
return texture2d;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2016-08-05 14:04:39 +08:00
|
|
|
|
|
|
|
std::string Bug15776Layer::title() const
|
|
|
|
{
|
|
|
|
return "Testing Issue #15776";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Bug15776Layer::subtitle() const
|
|
|
|
{
|
|
|
|
return "It should crash on TextureCache::addImage()";
|
|
|
|
}
|