v8/tools/run-tests.py --verbose --outdir=../%{OUTPUT_FOLDER} -j 1 --progress=verbose cctest/test-streaming-compilation-with-cache/*
%endif
%if 0%{?build_rtc_unittests}
-%{OUTPUT_FOLDER}/peerconnection_unittests
+%{OUTPUT_FOLDER}/call_unittests
%{OUTPUT_FOLDER}/modules_unittests
+%{OUTPUT_FOLDER}/peerconnection_unittests
%endif
%endif
%if 0%{?build_rtc_unittests}
mkdir -p %{buildroot}%{TIZEN_RTC_UT_DIR}
-install -m 0755 -p -D %{OUTPUT_FOLDER}/peerconnection_unittests %{buildroot}%{TIZEN_RTC_UT_DIR}
+install -m 0755 -p -D %{OUTPUT_FOLDER}/call_unittests %{buildroot}%{TIZEN_RTC_UT_DIR}
install -m 0755 -p -D %{OUTPUT_FOLDER}/modules_unittests %{buildroot}%{TIZEN_RTC_UT_DIR}
+install -m 0755 -p -D %{OUTPUT_FOLDER}/peerconnection_unittests %{buildroot}%{TIZEN_RTC_UT_DIR}
%endif
%if 0%{?build_tizen_media_unittests}
%if 0%{?build_rtc_unittests}
%files rtc_unittests
%manifest ./packaging/chromium-unittests.manifest
-%{TIZEN_RTC_UT_DIR}/peerconnection_unittests
+%{TIZEN_RTC_UT_DIR}/call_unittests
%{TIZEN_RTC_UT_DIR}/modules_unittests
+%{TIZEN_RTC_UT_DIR}/peerconnection_unittests
%endif
}
if (rtc_include_tests) {
- if (!build_with_chromium) {
+ if (!build_with_chromium || tizen_rtc_unittests) {
rtc_library("call_tests") {
testonly = true
"//third_party/abseil-cpp/absl/types:optional",
"//third_party/abseil-cpp/absl/types:variant",
]
+
+ if (tizen_rtc_unittests) {
+ # Below test depends on LogSink which is not defined
+ # when building for Tizen.
+ sources -= [ "bitrate_estimator_tests.cc" ]
+ }
}
rtc_library("call_perf_tests") {
]
absl_deps = [ "//third_party/abseil-cpp/absl/flags:flag" ]
}
+
+ if (tizen_rtc_unittests) {
+ rtc_test("call_unittests") {
+ testonly = true
+ deps = [
+ ":call_tests",
+ "../system_wrappers:field_trial_for_tests",
+ "../system_wrappers:metrics_for_tests",
+ "../test:test_main",
+ ]
+ }
+ }
}
# TODO(eladalon): This should be moved, as with the TODO for `rtp_interfaces`.
// stream send along with an secondary untouched stream. The transport wide
// feedback packets from the secondary stream allows the sending side to
// detect and retreansmit the lost packets from the lossy stream.
-TEST(RtpVideoSenderTest, RetransmitsOnTransportWideLossInfo) {
+TEST(RtpVideoSenderTest, DISABLED_RetransmitsOnTransportWideLossInfo) {
int rtx_packets;
test::Scenario s(test_info_);
test::CallClientConfig call_conf;
rtc_library("field_trial_for_tests") {
testonly = true
- visibility = [ "//third_party/webrtc/pc:peerconnection_unittests" ]
+ visibility = [
+ "//third_party/webrtc/call:call_unittests",
+ "//third_party/webrtc/pc:peerconnection_unittests",
+ ]
public = [ "include/field_trial.h" ]
sources = [ "source/field_trial.cc" ]
deps = [
rtc_library("metrics_for_tests") {
testonly = true
- visibility = [ "//third_party/webrtc/pc:peerconnection_unittests" ]
+ visibility = [
+ "//third_party/webrtc/call:call_unittests",
+ "//third_party/webrtc/pc:peerconnection_unittests",
+ ]
public = [ "include/metrics.h" ]
sources = [ "source/metrics.cc" ]
deps = [
if (tizen_rtc_unittests) {
public_deps += [
+ "//third_party/webrtc/call:call_unittests",
"//third_party/webrtc/pc:peerconnection_unittests",
"//third_party/webrtc/modules:modules_unittests",
]