-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#23696) oatpp: add version 1.3.0-latest
* oatpp: add version 1.3.0-latest * require cmake * simplify test_package * link math lib * fix versoin number Co-authored-by: PerseoGI <perseog@jfrog.com> * fix versoin number Co-authored-by: PerseoGI <perseog@jfrog.com> * fix versoin number Co-authored-by: PerseoGI <perseog@jfrog.com> * Make latest a point release --------- Co-authored-by: PerseoGI <perseog@jfrog.com> Co-authored-by: Abril Rincón Blanco <git@rinconblanco.es>
- Loading branch information
1 parent
cc683d2
commit 34838bf
Showing
9 changed files
with
39 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,20 @@ | ||
#include "DeserializerTest.hpp" | ||
#include <iostream> | ||
|
||
#include "oatpp/core/concurrency/SpinLock.hpp" | ||
#include "oatpp/core/base/Environment.hpp" | ||
|
||
#include <iostream> | ||
#include <atomic> | ||
|
||
|
||
void runTests() { | ||
OATPP_RUN_TEST(oatpp::test::parser::json::mapping::DeserializerTest); | ||
} | ||
|
||
int main() { | ||
oatpp::base::Environment::init(); | ||
|
||
runTests(); | ||
|
||
|
||
/* Print how much objects were created during app running, and what have left-probably leaked */ | ||
/* Disable object counting for release builds using '-D OATPP_DISABLE_ENV_OBJECT_COUNTERS' flag for better performance */ | ||
std::cout << "\nEnvironment:\n"; | ||
std::cout << "objectsCount = " << oatpp::base::Environment::getObjectsCount() << "\n"; | ||
std::cout << "objectsCreated = " << oatpp::base::Environment::getObjectsCreated() << "\n\n"; | ||
|
||
OATPP_ASSERT(oatpp::base::Environment::getObjectsCount() == 0); | ||
|
||
oatpp::base::Environment::destroy(); | ||
|
||
oatpp::base::Environment::destroy(); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
versions: | ||
"1.3.0.latest": | ||
folder: all | ||
"1.3.0": | ||
folder: all | ||
"1.2.5": | ||
|