Skip to content

Commit

Permalink
Отразил новое поведение в тестах. see #402
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilBeaver committed Feb 12, 2017
1 parent 65f0c46 commit 54a1e97
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/process.os
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
Процесс = СоздатьПроцесс("""" + Путь + """",,Истина);
Процесс.Запустить();
Поток = Процесс.ПотокВывода;
Процесс.ОжидатьЗавершения();

Стр = НормализоватьПереводыСтрок(Поток.Прочитать());

Expand All @@ -60,6 +61,8 @@
КонецЦикла;
КонецЦикла;

Стр = СокрП(Стр);

юТест.ПроверитьРавенство(ШтатныйВыводOscript(), НормализоватьПереводыСтрок(Стр));

КонецПроцедуры
Expand All @@ -81,13 +84,13 @@
Процесс.ПотокВвода.Закрыть();

Консоль.КодировкаВходногоПотока = КодировкаПоУмолчанию;
Процесс.ОжидатьЗавершения();

Вывод = Процесс.ПотокВывода.Прочитать();

Эталон = НормализоватьПереводыСтрок("1
|2
|3
|");
|3");
юТест.ПроверитьРавенство(Эталон, НормализоватьПереводыСтрок(Вывод));

КонецПроцедуры
Expand Down Expand Up @@ -136,8 +139,7 @@
| Builds a standalone executable module based on script specified
|
|IV. Run as CGI application: oscript.exe -cgi <script_path> [script arguments..]
| Runs as CGI application under HTTP-server (Apache/Nginx/IIS/etc...)
|";
| Runs as CGI application under HTTP-server (Apache/Nginx/IIS/etc...)";

Возврат НормализоватьПереводыСтрок(Текст);

Expand Down

0 comments on commit 54a1e97

Please sign in to comment.