From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 7124626044 for ; Thu, 21 Jun 2018 11:48:44 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0fqfV2AzecOO for ; Thu, 21 Jun 2018 11:48:44 -0400 (EDT) Received: from smtp49.i.mail.ru (smtp49.i.mail.ru [94.100.177.109]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 2DC002601D for ; Thu, 21 Jun 2018 11:48:43 -0400 (EDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: [tarantool-patches] Re: [PATCH v1 1/2] sql: finish clean-up in view_delayed_wal test From: "n.pettik" In-Reply-To: <99cafcd29bfbd39d39e1467c3c6d9123eaf02d90.1529510053.git.kshcherbatov@tarantool.org> Date: Thu, 21 Jun 2018 18:48:41 +0300 Content-Transfer-Encoding: quoted-printable Message-Id: <1023FBB9-5640-4BEA-8A18-ED42B74C53D4@tarantool.org> References: <99cafcd29bfbd39d39e1467c3c6d9123eaf02d90.1529510053.git.kshcherbatov@tarantool.org> Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org Cc: Kirill Shcherbatov > diff --git a/test/sql/view_delayed_wal.test.lua = b/test/sql/view_delayed_wal.test.lua > index 630c52b..8c30fc6 100644 > --- a/test/sql/view_delayed_wal.test.lua > +++ b/test/sql/view_delayed_wal.test.lua > @@ -43,3 +43,5 @@ box.space.V2 > -- SQL data dictionary we have to restart instance to clean up. > -- > test_run:cmd('restart server default') > + > +box.sql.execute("DROP TABLE t2=E2=80=9D) Actually, this is my mistake: I thought that 'restart server=E2=80=99 = would delete xlog files=E2=80=A6 You can simply substitute test_run:cmd(=E2=80=98restart server = default=E2=80=99) with test_run:cmd(=E2=80=99clean up server = default=E2=80=99). It is what exactly I wanted to do when I was writing this test.