summaryrefslogtreecommitdiff
path: root/cpp/test/Ice
Commit message (Collapse)AuthorAge
* Update version to v3.8.0Joe George2021-02-15
|
* Remove Ice::Application & Glacier2::Application deprecated classesJose2021-02-02
|
* Remove checksum support (#607)Austin Henriksen2021-02-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Removed checksum sources from swift mapping project file. * Removed checksum tests from Python. * Removed checksum from Python mapping. * Removed checksum tests from PHP mapping. * Removed checksum support from PHP mapping. * Removed checksum sources from MATLAB project file. * Removed checksum option from slice2x manpages. * Removed checksum sources from JavaScript mapping. * Removed checksum tests from Java mapping. * Removed outdated checksum metadata from Java mapping. * Removed checksum support from Java mapping. * Removed checksum tests from csharp. * Removed checksum support from csharp mapping. * Removed checksum tests from cpp * Removed checksum support from IceBox. * Removed checksum support from IceStorm. * Removed Slice checksum support from IceGrid. * Fixed broken filters file for Slice VS project. * Removed checksum support from cpp mapping. * Removed checksum support from Slice definitions. * Removed checksum support from cpp98 mapping.
* Update to MSbuild builder 5.0.6Jose2021-01-18
|
* Update MSBuild builder packageJose2021-01-18
|
* Fix C# marshal/unmarshal of optional data members (#1232)Jose2021-01-08
| | | See #889
* Fix for Visual Studio unicode string litereal testingJose2021-01-07
|
* Fix u8 string in Ice/proxy testJose2021-01-07
|
* UCN literals are now encoded with octals.Austin Henriksen2020-12-16
| | | | And removed the now unnecessary utf-8 compiler flags.
* Removed u8 qualifiers from const strings in slice2cpp.Austin Henriksen2020-12-15
| | | | | This fixes #1179. It switches tests for this to compile with the utf-8 codepage too.
* Update version to 3.7.5Jose2020-11-30
|
* Add class cycle detection during unmarshaling (#946)Joe George2020-07-07
| | | | | | | | | Add support for detection of class cycles during unmarshaling in languages which do no have garbage collection: C++, Swift, and Objective-C. A `MarshalException` is thrown when a cycle is detected. The property `Ice.AcceptClassCycles` can be set to a value greater than `0` to change this behavior.
* Reverted the lower timeout for the invocation retry test, fix for #859Benoit Foucher2020-05-20
|
* Bumped sleep time and decreased timeout, fixes #850v3.7.4Benoit Foucher2020-05-15
|
* Ice/admin test fixesJose2020-04-22
|
* Ice/metrics test fixesJose2020-04-20
|
* Update version to 3.7.4Jose2020-04-20
|
* Fixed Windows build error caused by unreferenced local variableBenoit Foucher2020-03-02
|
* Don't retry invocations on fixed proxies, fixes #671Benoit Foucher2020-02-20
|
* Fixed missing -d2SSAOptimizer- flag for Ice/metrics client/collocated projectsBenoit Foucher2019-11-27
|
* Fixed Ice/metrics test failure, fixes #638Benoit Foucher2019-11-20
|
* Move response, error and sent functions given to the client Async API (#610)Bernard Normier2019-11-03
| | | instead of copying them.
* Fix clang -std=c++17 buildBernard Normier2019-10-29
| | | | Note: still building Ice C++11 with -std=c++11.
* Added diagnosis for metrics test failures #568Benoit Foucher2019-10-14
|
* Pass exception_ptr by value in AMI callbacksBernard Normier2019-10-10
|
* Improved invocation metrics test for better diagnosis, fix for #568Benoit Foucher2019-10-04
|
* Inrease timeouts in Ice/acm test - Close #558Jose2019-09-29
|
* test/Ice/logger need to restore file permission before cleanupJose2019-09-27
|
* Fixed Python bug related to invalid return parameters, fixes #550Benoit Foucher2019-09-25
|
* Fix for invocation timeout sporadic test failure, fixes #547Benoit Foucher2019-09-24
|
* Another fix for the Ice/retry testBenoit Foucher2019-09-23
|
* Fixed warnings from Ice/retry test, fixes #539Benoit Foucher2019-09-23
|
* Fixed #542, adjusted timeouts to reduce chances of failuresBenoit Foucher2019-09-23
|
* Fixed file permissionsBernard Normier2019-09-17
|
* Fix UWP test build failure - Close #529Jose2019-09-16
|
* Fixes for endpoint to string conversion - Close #517 (#519)Jose2019-09-10
|
* Fixed Ice/acm test waitForClose timingBenoit Foucher2019-09-04
|
* Fixed Ice/retry test timingBenoit Foucher2019-09-04
|
* Fixed C++11 build errorBenoit Foucher2019-09-04
|
* Simplifed collocation test in Ice/location test, fixes #506Benoit Foucher2019-09-04
|
* Fixed retry bug with -2 invocation timeout, fixes #501Benoit Foucher2019-09-03
|
* Fixes for slice2py forward declarations - Close #490Jose2019-09-03
|
* Fixed Ice/admin test to not wait indefinitely, fixes #343Benoit Foucher2019-08-29
|
* Minor timeout test fix to prevent failure, fixes #498Benoit Foucher2019-08-29
|
* Fixed Ice/timeout test to ensure the client doesn't hang in case of test failureBenoit Foucher2019-08-22
|
* Fixes for C++ & Swift generated code - Close #458Jose2019-07-31
|
* Removed extra empty lineBernard Normier2019-07-29
|
* Add support for hidden visibility on AIX/xlC.Bernard Normier2019-07-25
| | | | Link libIceXML with libexpat-static on AIX/xlC.
* Update Ice version to 3.7.3Jose2019-07-22
|
* Fixed non-thread safe AMD dispatch, fixes #448 (#449)Benoit Foucher2019-07-18
| | | | | | | The caching of the output stream which was added back to solve #414 made the dispatch of AMD requests non thread-safe if a dispatch interceptor was installed and if the interceptor retried the dispatch. Multiple continuation could run concurrently and eventually re-use the cached output stream to marshal multiple responses.