summaryrefslogtreecommitdiff
path: root/test/known_failures_Linux.json
Commit message (Collapse)AuthorAgeFilesLines
* THRIFT-5580: refactor kotlin cross tests (#2600)Jiayu Liu2022-05-081-0/+4
| | | | | refactor kotlin cross test to: * use proper cli framework, * add more transport/protocol cases
* THRIFT-5548: add kotlin code genJiayu Liu2022-04-201-0/+2
| | | | | | | Client: kotlin Patch: Jiayu Liu This closes #2556
* THRIFT-4451 Use a shared TcpStream between both Thrift clients in cross-testAllen George2021-02-281-18/+0
| | | | Client: rs
* fix CI: add Erlang crashes to known failuresJens Geyer2020-09-201-12/+12
|
* fix CI: add Erlang crashes to known failuresJens Geyer2020-09-171-12/+12
|
* fix CI: add Erlang crashes to known failuresJens Geyer2020-09-121-323/+335
|
* THRIFT-5185: Support for using WebSockets as a server transportpenenin2020-05-181-0/+64
| | | Client: cpp
* Updated known cross failures listJens Geyer2020-03-161-0/+167
|
* Updated known cross failures listJens Geyer2020-03-151-1/+97
| | | | | | Patch: Jens Geyer This closes #2058
* THRIFT-4982 Remove deprecated C# bindings from the code baseJens Geyer2020-02-281-24/+162
| | | | | | | Client: csharp Patch: Jens Geyer This closes #2027
* THRIFT-5059: Add cross tests for TZlibTransport in DKengo Seki2020-02-211-0/+26
| | | | | | | Client: D Patch: Kengo Seki This closes #1977
* THRIFT-4974: Add cross test for Python's Unix domain socket transportKengo Seki2019-12-121-1/+108
| | | | | Client: Python This closes #1896.
* Mark some csharp-erl, erl-csharp ssl tests as known issues.James E. King III2019-07-071-15/+23
| | | | | | The latest ssl (9.3) in erl does not support TLSv1.0 or TLSv1.1 by default and cross tests are failing. Since csharp was deprecated in favor of netstd, ignoring it.
* THRIFT-4612: THeader support in go libraryYuxuan 'fishy' Wang2019-06-191-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Client: go Implement THeaderTransport and THeaderProtocol, with support of: * clients: - headers - framedBinary - unframedBinary - framedCompact - unframedCompact * transforms: - none - zlib * info types: - key_value * wrapped protocols: - TBinary - TCompact The support list is in general on par of the THeader implementation in the python library. The cross-test passes, except ones related to cpp/nodejs http transport, which were also failing for non-theader protocols. This change also fixes two bugs: 1. A small issue in test/go/src/bin/testserver/main.go 2. A bug in TFrameTransport go implementation
* [THRIFT-4771] add nodejs THeaderProtocol support (#1743)David Mai2019-02-221-0/+14
| | | Client: nodejs
* re-disable hs-csharp_json_framed-ip cross testJames E. King III2019-02-121-0/+2
|
* THRIFT-3877: fix py/py3 server, java client with http transportJames E. King III2019-02-111-31/+1
| | | | | | | | | | | | | | | | | The java TestClient asks the server to runa oneway request that sleeps for 3 seconds. If the java TestClient sees the duration of the call exceed one second, it fails the test. This means the server did not participate in the "fire and forget" dynamics of ONEWAY requests. In this case the THttpServer was processing the RPC before sending the transport response. The fix was to enhance the TProcessor so that the THttpServer has an opportunity to inspect the message header before processing the RPC. This is partly due to the violation of the THttpServer in the layered architecture. It is essentially implementing a combined server and transport, whereas there should be a distinct server, protocol, and transport separation. Many languages seem to have this problem where HTTP was introduced.
* THRIFT-4780: finish the server implementation of multi in python serverJames E. King III2019-02-081-0/+122
| | | | - Add default processor handling to python multi
* Fix hs-nodets test and re-enable itMustafa Senol Cosar2018-12-031-1/+0
|
* THRIFT-3143: Add nodets supportwilfrem2018-11-291-0/+3
| | | | Co-authored-by: Mustafa Senol Cosar <cosar.mustafasenol@gmail.com>
* THRIFT-4620: add crosstest support for zlib (buffered) to cpp, enable ↵James E. King III2018-09-161-1/+13
| | | | cpp,go,py,py3 tests
* THRIFT-4621 Add THeader for PythonNeil Williams2018-09-011-0/+14
| | | | Client: py
* disable one cross test that has been failingJames E. King III2018-06-101-0/+1
|
* THRIFT-4548: python binary accelerated protocol with multiplexing via ↵Nicholas Martin2018-06-071-69/+1
| | | | | | | | | | | | | | | | | | | | decoration (#1547) * Fix binary accelerated protocol with multiplexing TMultiplexedProtocol objects did not inherit from TProtocol, so the decorated protocol object passed into the binary accelerated C extension was not really a TProtocol object, which caused errors. This implementation decorates the protocol object by dynamically creating a new class that extends both the class of the protocol being decorated and TMultiplexedProtocol. * THRIFT-4548: remove known failures for py multiplexed client cross tests * Call super with args for python2 & pep8 fixes * THRIFT-3877: disable known failures for http cpp tests This closes #1535
* THRIFT-4548: add python cross test client multiplexed protocol supportJames E. King III2018-04-131-53/+91
| | | | Client: py
* THRIFT-3118: add http (for non-ssl and for ssl) to the python cross testsJames E. King III2018-04-051-1/+171
|
* THRIFT-4525: add ruby cross test ssl supportJames E. King III2018-03-211-9/+27
| | | | | | Client: rb This closes #1514
* THRIFT-4489: Add unix domain socket support for nodejsDaniel Shih2018-03-211-0/+9
| | | | | | Client: nodejs This closes #1491
* THRIFT-4187 Allow dart framed transport to read incomplete frameAllen George2018-03-201-17/+1
| | | | | | Client: dart This closes #1269
* THRIFT-4419: Fix bug where framed messages > 4K could not be readAllen George2018-03-171-12/+0
| | | | | | Client: rs This closes #1508
* THRIFT-4508: Fix node.js to be the desired version in docker ubuntu-artful imageJames E. King III2018-03-061-20/+8
|
* THRIFT-4503: fix dlang server logging on client disconnect so it does not ↵James E. King III2018-03-031-2/+0
| | | | report an error for normal operation
* THRIFT-82: fix cl test server to return the correct SecondService string and ↵James E. King III2018-03-021-7/+0
| | | | enable multi tests
* THRIFT-82: follow-up to common lisp to stabilize the linux build environment ↵James E. King III2018-03-021-0/+2
| | | | and update some docs
* THRIFT-82: Add Common Lisp supportTomek Kurcz2018-03-021-0/+31
| | | | | | | | | | Client: cl There's framed and buffered socket transport, binary protocol, multiplex, simple server, cross-tests, self-tests, tutorial, CL library, CL code generator. Only SBCL is supported for now. This closes #1412
* THRIFT-4434: .NET Core cleanup and the beginnings of compiler unit testsVolodymyr Gotra2018-01-141-0/+6
| | | | | | Client: netcore This closes #1449
* THRIFT-4390: Fix bug where binary/buffered messages > 4K could not be ↵Allen George2018-01-121-6/+0
| | | | | | | | read/written Client: rs This closes #1458
* THRIFT-3877: cpp http server buffering bug onewayChet Murthy2018-01-101-22/+0
| | | | | | | | | | | | | Client: C++ This closes #1418 C++ HTTP server, hit with oneway RPC, then roundtrip RPC, no longer hangs, as demonstrated by OneWayHTTPTest. Unit-test: Hit a C++ HTTP server with a oneway rpc, and the next RPC will hang. This test-case elicits the failure (converts to timeout-expiry).
* THRIFT-3580 THeader for HaskellNobuaki Sukegawa2017-11-301-1/+3
| | | | | | | Client: hs This closes #820 This closes #1423
* THRIFT-2013: add perl crosstest multiplexed client and server logicJames E. King, III2017-11-211-1/+3
| | | | | | Client: perl This closes #1416
* THRIFT-2013: update docker for artful (go back to lua 5.2) and enhanceJames E. King, III2017-11-201-1/+17
| | | | | cpp client to send 0,1,2,4,8,...,131072 size binary tests, this exposed problems in the erl and rs servers and those tests have been disabled for now.
* THRIFT-2013: add multiplex server and client test support to cpp languageJames E. King, III2017-11-181-14/+76
| | | | | | | | | add multiplex client test support to csharp and java languages fix a bug in the server-side header protocol factory fix a bug in the cpp SSL server socket implementation remove unnecessary sleep in cpp server testOneway This closes #1414
* THRIFT-2998: enable cross test for nodejs http transport,James E. King, III2017-10-281-0/+76
| | | | | | | fix missing apache license headers in nodejs Client: nodejs This closes #1403
* THRIFT-4376: fix a few high impact coverity defects:James E. King, III2017-10-281-0/+6
| | | | | | | | 1458947: memory leak in compiler 1458787: resource leak in c_glib led to discovery of assert() abuse 1459090: fix string.find result check in JSON processor (unlikely) This closes #1404
* THRIFT-4350: enable dotnet-2.0.0-sdk in ubuntu xenial, update netcoreJames E. King, III2017-10-101-1/+1
| | | | | | | projects, get them running with make cross Client: netcore This closes #1379
* THRIFT-4328: split binary cross tests into their own build job to resolveJames E. King, III2017-09-131-61/+3
| | | | | | timeouts in travis; enable newly reliable cross tests (ran 5 times clean) This closes #1351
* THRIFT-4186 Add travis build for RustAllen George2017-05-111-1/+3
| | | | | | | Client: rs Patch: Allen George <allen.george@gmail.com> This closes #1260
* THRIFT-4084: Add a SSL/TLS negotiation check to crossfeature to verify SSLv3 ↵James E. King, III2017-02-201-5/+5
| | | | | | | | is not active and that at least one of TLSv1.0 through 1.2 are accepted. Client: csharp, d, go, nodejs, perl This closes #1197
* THRIFT-3272 (THRIFT-4066) fix perl SSL authentication support; fixed error ↵James E. King, III2017-02-151-24/+3
| | | | | | | | in erlang test client using wrong key file and added CA Client: Perl This closes #1189
* THRIFT-3369 Provide SSL/TLS client for c_glibJames E. King, III2017-02-131-3/+7
| | | | | | | Client: c_glib Patch: Gonzalo Aguilar Delgado <gaguilar@level2crm.com> This closes #1185